HelloMQTT porting to FRDM-K64F+AppShield

Dependencies:   C12832 EthernetInterface MQTT mbed-rtos mbed

Fork of HelloMQTT by MQTT

Tested with RabbitMQ 3.4.4 on OSX.

modification are below

- skip QOS2 test since RabbitMQ is not supported QOS2 message type

Files at this revision

API Documentation at this revision

Comitter:
hogejun
Date:
Mon Apr 13 09:41:48 2015 +0000
Parent:
16:28d062c5522b
Commit message:
initial revision

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Oct 06 11:42:25 2014 +0000
+++ b/main.cpp	Mon Apr 13 09:41:48 2015 +0000
@@ -26,7 +26,9 @@
 
 
 #include "C12832.h"
-C12832 lcd(p5, p7, p6, p8, p11);
+//C12832 lcd(p5, p7, p6, p8, p11);
+// Using Arduino pin notation
+C12832 lcd(D11, D13, D12, D7, D10);
 
 #include "MQTTEthernet.h"
 #include "MQTTClient.h"