portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

Revision:
41:804f6a0bda26
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DeviceIntegration.h	Tue Jul 15 12:44:34 2014 +0000
@@ -0,0 +1,30 @@
+#ifndef DEVICEINTEGRATION_H
+#define DEVICEINTEGRATION_H
+
+#include "SmartRest.h"
+#include "SmartRestTemplate.h"
+#include "DeviceInfo.h"
+
+class DeviceIntegration
+{
+public:
+    DeviceIntegration(SmartRest&, SmartRestTemplate&, long&, DeviceInfo&);
+    
+    bool init();
+    bool integrate();
+
+protected:
+    bool deviceExisting();
+    bool createDevice();
+    bool addGlobalIdentifier();
+    bool updateDevice();
+
+private:
+    bool _init;
+    long& _deviceId;
+    SmartRestTemplate& _tpl;
+    SmartRest& _client;
+    DeviceInfo& _deviceInfo;
+};
+
+#endif
\ No newline at end of file