forked from Imroy/pubsubclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqtt_publish_large.ino
66 lines (54 loc) · 1.41 KB
/
mqtt_publish_large.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
Large publish message MQTT example
- connects to an MQTT server
- publishes a large string of text to the topic "outTopic"
*/
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
const char *ssid = "xxxxxxxx"; // cannot be longer than 32 characters!
const char *pass = "yyyyyyyy"; //
// Update these with values suitable for your network.
IPAddress server(172, 16, 0, 2);
WiFiClient wclient;
PubSubClient client(wclient, server);
void setup() {
// Setup console
Serial.begin(115200);
delay(10);
Serial.println();
Serial.println();
}
bool write_payload(Client& payload_stream) {
char buf[64];
memset(buf, 32, 64);
for (int l = 0; l < 1024; l++) {
int len = sprintf(buf, "%d", l);
buf[len] = 32;
buf[63] = '\n';
uint32_t sent = payload_stream.write((const uint8_t*)buf, 64);
if (sent < 64)
return false;
}
Serial.println("Published large message.");
return true;
}
void loop() {
if (WiFi.status() != WL_CONNECTED) {
Serial.print("Connecting to ");
Serial.print(ssid);
Serial.println("...");
WiFi.begin(ssid, pass);
if (WiFi.waitForConnectResult() != WL_CONNECTED)
return;
Serial.println("WiFi connected");
}
if (WiFi.status() == WL_CONNECTED) {
if (!client.connected()) {
if (client.connect("arduinoClient")) {
client.publish("outTopic", write_payload, 65536);
}
}
if (client.connected())
client.loop();
}
}