Simple demo with GPIO MQTT protocol test on STM32 broker tests.mosquitto.org WIFI interface ESP8266 Issue of topic0 by pressing the button If reception of ', switching of the led If received from 'q' end of program

Dependencies:   MQTT

This is a MQTT protocol test on STM32 NUCLEO The broker is tests.mosquitto.org The WIFI interface is ESP8266

For configuration please check mbed_app.json and #define in main.cpp

Issue of topic0 by pressing the button If received 'l' from broker then switching of the led If received 'q' from broker then end the program

Information and debug with a terminal using UART over USB https://os.mbed.com/media/uploads/cdupaty/mqtt2.jpg

This test has been checked with MQTT.fx https://os.mbed.com/media/uploads/cdupaty/mqttfx.jpg

Revision:
3:7a6a899de7cc
Parent:
2:638c854c0695
Child:
5:4a257f6ac09a
Child:
6:e4c690c45021
--- a/main.cpp	Wed Apr 30 13:16:09 2014 +0000
+++ b/main.cpp	Tue May 06 09:45:22 2014 +0000
@@ -153,13 +153,13 @@
     
     lcd.printf("Version is %f\n", version);
               
-    MQTT::Client<IPStack, Countdown>client = MQTT::Client<IPStack, Countdown>(&ipstack);
+    MQTT::Client<IPStack, Countdown> client = MQTT::Client<IPStack, Countdown>(ipstack);
+    
+    client.setConnectionLostHandler(connect);
 
     MQTT::Client<IPStack, Countdown>::connectionLostInfo info = {&client, &ipstack};
     int rc = connect(&info);
     
-    client.setConnectionLostHandler(connect);
-    
     rc = client.subscribe(topic, MQTT::QOS1, messageArrived);   
     if (rc != 0)
         lcd.printf("rc from MQTT subscribe is %d\n", rc);