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

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

Revision:
11:278ba4de2e99
Parent:
0:0a2f634d3324
diff -r c52abd2d6595 -r 278ba4de2e99 MQTT/FP/FP.h
--- a/MQTT/FP/FP.h	Wed Sep 06 05:58:48 2017 +0000
+++ b/MQTT/FP/FP.h	Thu Sep 07 01:26:48 2017 +0000
@@ -132,13 +132,13 @@
  *  @brief API for managing Function Pointers
  */
 template<class retT, class argT>
-class FP
+class _FP
 {
 public:
     /** Create the FP object - only one callback can be attached to the object, that is
      *  a member function or a global function, not both at the same time
      */
-    FP()
+    _FP()
     {
         obj_callback = 0;
         c_callback = 0;