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

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

Revision:
8:e2f15b1b4f70
Parent:
1:8e4149b53a8a
--- a/MQTT/MQTTAsync.h	Thu Jun 01 05:33:50 2017 +0000
+++ b/MQTT/MQTTAsync.h	Wed Jun 14 07:48:45 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;