|
1 | 1 | /*
|
2 | 2 | * 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. |
6 | 9 | */
|
7 |
| - |
| 10 | + |
8 | 11 | #include <ArduinoSerialToTCPBridgeClient.h>
|
9 | 12 | #include <PubSubClient.h>
|
10 | 13 |
|
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"; |
13 | 18 | const char* ledTopic = "led";
|
| 19 | +const char* outTopic = "ArduinoOut"; |
| 20 | + |
| 21 | +uint32_t lastPub = 0; |
14 | 22 |
|
15 | 23 | void setup() {
|
16 | 24 | pinMode(13, OUTPUT);
|
17 | 25 | s = new ArduinoSerialToTCPBridgeClient();
|
18 |
| - client = new PubSubClient(*s); |
| 26 | + client.setClient(*s); |
| 27 | + |
19 | 28 | // 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); |
26 | 31 | }
|
27 | 32 |
|
28 | 33 | 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 | + } |
30 | 53 | }
|
31 | 54 |
|
| 55 | +// MQTT incoming message from broker callback |
32 | 56 | void callback(char* topic, byte* payload, unsigned int length) {
|
33 | 57 | // Only proceed if incoming message's topic matches.
|
| 58 | + // Toggle led if according to message character. |
34 | 59 | 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); |
39 | 64 | }
|
40 | 65 | }
|
41 | 66 | }
|
42 | 67 |
|
| 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