【mbed OS5対応バージョン】データの保存、更新、取得ができるWebサービス「milkcocoa」に接続し、データのプッシュ、送信、取得ができるライブラリです。 https://mlkcca.com/

Dependents:   mbed-os-example-wifi-milkcocoa MilkcocoaOsSample_Eth MilkcocoaOsSample_ESP8266 MilkcocoaOsSample_Eth_DigitalIn

Revision:
11:278ba4de2e99
Parent:
10:c52abd2d6595
--- a/MQTT/MQTTAsync.h	Wed Sep 06 05:58:48 2017 +0000
+++ b/MQTT/MQTTAsync.h	Thu Sep 07 01:26:48 2017 +0000
@@ -156,10 +156,10 @@
     
     PacketId packetid;
     
-    typedef FP<void, Result*> resultHandlerFP;    
+    typedef _FP<void, Result*> resultHandlerFP;    
     resultHandlerFP connectHandler; 
     
-    typedef FP<void, Message*> messageHandlerFP;
+    typedef _FP<void, Message*> messageHandlerFP;
     struct MessageHandlers
     {
     	const char* topic;
@@ -180,7 +180,7 @@
 	
 	messageHandlerFP defaultMessageHandler;
     
-    typedef FP<int, connectionLostInfo*> connectionLostFP;
+    typedef _FP<int, connectionLostInfo*> connectionLostFP;
     
     connectionLostFP connectionLostHandler;