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:
96:5dfdc8568e9f
Parent:
93:0acd11870c6a
Child:
98:9f2de96941c4
--- a/DeviceBootstrap.h	Wed Apr 22 11:22:25 2015 +0000
+++ b/DeviceBootstrap.h	Mon Apr 27 10:50:21 2015 +0000
@@ -2,7 +2,6 @@
 #define DEVICEBOOTSTRAP_H
 
 #include <stddef.h>
-#include "LCDDisplay.h"
 #include "DeviceMemory.h"
 #include "AbstractSmartRest.h"
 #include "DeviceInfo.h"
@@ -18,7 +17,7 @@
 class DeviceBootstrap
 {
 public:
-    DeviceBootstrap(AbstractSmartRest&, LCDDisplay&, DeviceInfo&, DeviceMemory&);
+    DeviceBootstrap(AbstractSmartRest&, DeviceInfo&, DeviceMemory&);
     
     bool setUpCredentials();
     const char * username();
@@ -36,7 +35,6 @@
     AbstractSmartRest& _client;
     DeviceInfo& _deviceInfo;
     DeviceMemory& _deviceMemory;
-    LCDDisplay& _lcdDisplay;
     char _username[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH];
     char _password[DEVICE_BOOTSTRAP_CREDENTIALS_LENGTH];
 };