Skip to content

Commit ada7f69

Browse files
committed
improve MQTT example:
- retry connecting to broker indefinitely, indicating failure by flashing led fast. - connect with DNS. - publish millis() to topic every 5s while connected. - make PubSubClient instance global variable.
1 parent 0a810f8 commit ada7f69

File tree

2 files changed

+57
-19
lines changed

2 files changed

+57
-19
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ After installing the dependencies and this library, make sure you have all 3 pre
3737

3838
### Details
3939
- Tested only on Arduino Uno. It would probably not work for the Arduino Due.
40+
- You cannot use the same serial port in your app that is being used by the protocol, e.g. You cannot use `Serial` (Serial0) when the library uses `NeoSerial`, etc. You can modify this lib easily to use other hardware serial ports on bigger boards than the Arduino Uno if you want to free up your USB Serial connection.
41+
- Your app's instance of `ArduinoSerialToTCPBridgeClient` needs to be a pointer and created with `new()`. It doesn't work otherwise and I don't know why yet.
42+
4043
- The protocol provides the app an in order, duplicates free and error checked byte stream by adding a CRC32 and simple retry mechanism. See [this](https://en.wikibooks.org/wiki/Serial_Programming/Error_Correction_Methods) for background.
4144
- The **Protocol Gateway** opens a real TCP connection to a set destination on behalf of the **Protocol Client** running on the Arduino, and forwards traffic bi-directionally.
4245
- `ArduinoSerialToTCPBridgeClient` is derived from the standard Arduino `Client` class. This means existing code written for Ethernet/Wi-Fi shields should work with this.
4346
- `NeoHWSerial` is an alternative for `Serial`, used to gain access to the AVR UART interrupts.
4447
- The protocol cannot run over the standard Serial API or something like software serial because it needs hardware level RX interrupts when bytes arrive.
45-
- You cannot use the same serial port in your app that is being used by the protocol, e.g. You cannot use `Serial` (Serial0) when the library uses `NeoSerial`, etc. You can modify this lib easily to use other hardware serial ports on bigger boards than the Arduino Uno if you want to free up your USB Serial connection.

examples/MQTTClient/MQTTClient.ino

+54-18
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,78 @@
11
/*
22
* Basic example of MQTT Client running over the Serial To TCP Bridge Client.
3-
* The Arduino makes a connection to a Protocol Gateway instance on the PC that
4-
* is listening on the COM port that is connected to the Serial-over-USB of the Arduino.
5-
* The MQTT Client connects to a Broker running on localhost on the host PC.
3+
*
4+
* The example connects to a Broker serving on "localhost" on the host PC.
5+
* It will publish millis() as a message every 5s, while connected.
6+
*
7+
* Using another MQTT client:
8+
* Publish char '1' to topic "led" to turn on Led on Arduino Uno and '2' to turn off.
69
*/
7-
10+
811
#include <ArduinoSerialToTCPBridgeClient.h>
912
#include <PubSubClient.h>
1013

11-
ArduinoSerialToTCPBridgeClient* s; // Protocol Client running over USB Serial
12-
PubSubClient* client; // MQTT Client
14+
ArduinoSerialToTCPBridgeClient* s; // Protocol Client running over USB Serial
15+
PubSubClient client; // MQTT Client
16+
17+
const char* broker = "localhost";
1318
const char* ledTopic = "led";
19+
const char* outTopic = "ArduinoOut";
20+
21+
uint32_t lastPub = 0;
1422

1523
void setup() {
1624
pinMode(13, OUTPUT);
1725
s = new ArduinoSerialToTCPBridgeClient();
18-
client = new PubSubClient(*s);
26+
client.setClient(*s);
27+
1928
// MQTT Broker running on same PC the Arduino is connected to.
20-
client->setServer(IPAddress(127,0,0,1), 1883);
21-
client->setCallback(callback);
22-
if (client->connect("arduinoClient")) {
23-
client->publish("outTopic", "Hello world!");
24-
client->subscribe(ledTopic);
25-
}
29+
client.setServer(broker, 1883);
30+
client.setCallback(callback);
2631
}
2732

2833
void loop() {
29-
client->loop();
34+
// If not connected, retry indefinitely.
35+
while(!client.loop()) {
36+
while(!connectToBroker()) {
37+
38+
// If connection attempt unsuccessful, flash led fast.
39+
for (uint8_t fc = 0; fc < 10; fc++) {
40+
digitalWrite(13, !digitalRead(13));
41+
delay(200);
42+
}
43+
}
44+
}
45+
46+
// Publish arduino alive time every 5s, while connected to broker.
47+
uint32_t now = millis();
48+
if ((now - lastPub) > 5000) {
49+
String aliveTimeMsg = String(now);
50+
client.publish(outTopic, aliveTimeMsg.c_str());
51+
lastPub = now;
52+
}
3053
}
3154

55+
// MQTT incoming message from broker callback
3256
void callback(char* topic, byte* payload, unsigned int length) {
3357
// Only proceed if incoming message's topic matches.
58+
// Toggle led if according to message character.
3459
if ((strcmp(topic, ledTopic) == 0) && (length == 1)) {
35-
if (payload[0] == 0x31) {
36-
digitalWrite(13, HIGH); // Turn on led if MQTT message '1'
37-
} else if (payload[0] == 0x32) {
38-
digitalWrite(13, LOW); // Turn off led if MQTT message '2'
60+
if (payload[0] == '1') {
61+
digitalWrite(13, HIGH);
62+
} else if (payload[0] == '2') {
63+
digitalWrite(13, LOW);
3964
}
4065
}
4166
}
4267

68+
boolean connectToBroker() {
69+
if (client.connect("arduinoClient")) {
70+
// Publish first message on connect and subscribe to Led controller.
71+
client.publish(outTopic, "Hello world!");
72+
client.subscribe(ledTopic);
73+
return true;
74+
} else {
75+
return false;
76+
}
77+
}
78+

0 commit comments

Comments
 (0)