We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe660b commit b814fb9Copy full SHA for b814fb9
examples/mqtt_polling/mqtt_polling.ino
@@ -69,7 +69,7 @@ void loop() {
69
String message = MqttClient.readMessage(MQTT_SUB_TOPIC);
70
71
// Read message will return an empty string if there were no new
72
- // messages, so anything other than that means that there were a new
+ // messages, so anything other than that means that there was a new
73
// message
74
if (message != "") {
75
Log.infof("Got new message: %s\r\n", message.c_str());
@@ -87,5 +87,5 @@ void loop() {
87
Log.error("Failed to publish");
88
}
89
90
- delay(1000);
+ delay(5000);
91
0 commit comments