test

Dependencies:   FP MQTTPacket

Fork of MQTT by MQTT

Revision:
56:30f7b745eaaa
Parent:
52:3f9919941b86
--- a/MQTTmbed.h	Mon Sep 25 11:12:23 2017 +0000
+++ b/MQTTmbed.h	Mon Nov 27 11:06:38 2017 +0000
@@ -6,13 +6,14 @@
 class Countdown
 {
 public:
-    Countdown() : t()
+    Countdown()
     {
-  
+        t = Timer();   
     }
     
-    Countdown(int ms) : t()
+    Countdown(int ms)
     {
+        t = Timer();
         countdown_ms(ms);   
     }