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:
55:a0f7295ed6b6
Parent:
41:804f6a0bda26
--- a/TemperatureMeasurement.h	Wed Sep 03 14:36:55 2014 +0000
+++ b/TemperatureMeasurement.h	Thu Oct 23 12:50:07 2014 +0000
@@ -1,14 +1,14 @@
 #ifndef TEMPERATUREMEASUREMENT_H
 #define TEMPERATUREMEASUREMENT_H
 
-#include "SmartRest.h"
+#include "AbstractSmartRest.h"
 #include "SmartRestTemplate.h"
 #include "LM75B.h"
 
 class TemperatureMeasurement
 {
 public:
-    TemperatureMeasurement(SmartRest&, SmartRestTemplate&, long&, LM75B&);
+    TemperatureMeasurement(AbstractSmartRest&, SmartRestTemplate&, long&, LM75B&);
     
     bool init();
     bool run();
@@ -17,7 +17,7 @@
     bool _init, _open;
     long& _deviceId;
     SmartRestTemplate& _tpl;
-    SmartRest& _client;
+    AbstractSmartRest& _client;
     LM75B& _sensor;
 };