Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of HelloMQTT by
Revision 19:7f7aba7a4a8b, committed 2015-07-30
- Comitter:
- icraggs
- Date:
- Thu Jul 30 13:49:18 2015 +0000
- Parent:
- 18:07a79d8f01c3
- Child:
- 20:49c9daf2b0ff
- Commit message:
- Subscribe at QoS 2, remove lcd.cls() calls
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Mon Jul 27 09:30:31 2015 +0000
+++ b/main.cpp Thu Jul 30 13:49:18 2015 +0000
@@ -88,7 +88,7 @@
if ((rc = client.connect(data)) != 0)
printf("rc from MQTT connect is %d\n", rc);
- if ((rc = client.subscribe(topic, MQTT::QOS1, messageArrived)) != 0)
+ if ((rc = client.subscribe(topic, MQTT::QOS2, messageArrived)) != 0)
printf("rc from MQTT subscribe is %d\n", rc);
MQTT::Message message;
@@ -122,16 +122,10 @@
client.yield(100);
if ((rc = client.unsubscribe(topic)) != 0)
- {
- lcd.cls();
printf("rc from unsubscribe was %d\n", rc);
- }
if ((rc = client.disconnect()) != 0)
- {
- lcd.cls();
printf("rc from disconnect was %d\n", rc);
- }
ipstack.disconnect();
