Official reference client implementation for Cumulocity SmartREST on u-blox C027.

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Vincent Wochnik

Revision:
73:313975bfec96
Parent:
71:063c45e99578
Child:
82:ca7430f50b2b
--- a/measurement/TemperatureMeasurement.h	Mon Feb 16 13:15:52 2015 +0000
+++ b/measurement/TemperatureMeasurement.h	Tue Feb 17 16:31:30 2015 +0000
@@ -4,11 +4,14 @@
 #include "AbstractSmartRest.h"
 #include "SmartRestTemplate.h"
 #include "LM75B.h"
+#include "DeviceIO.h"
+#include "DeviceInfo.h"
+#include "DeviceBootstrap.h"
 
 class TemperatureMeasurement
 {
 public:
-    TemperatureMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, LM75B&);
+    TemperatureMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, LM75B&, DeviceIO&, DeviceInfo&, DeviceBootstrap&);
     
     bool init();
     bool run();
@@ -21,6 +24,9 @@
     LM75B& _sensor;
     float oldValue;
     Timer sendingTimer;
+    DeviceIO& _io;
+    DeviceInfo& _deviceInfo;
+    DeviceBootstrap& _bootstrap;
 };
 
 #endif
\ No newline at end of file