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:
94:61d44636f020
--- a/io/LCDDisplay.h	Wed Apr 22 11:22:25 2015 +0000
+++ b/io/LCDDisplay.h	Mon Apr 27 10:50:21 2015 +0000
@@ -7,9 +7,16 @@
 
 class LCDDisplay
 {
-public:
+private:
         LCDDisplay(): firstLine(""), secondLine(""), thirdLine(""),
                       _lcd(D11, D13, D12, D7, D10) {}
+        LCDDisplay(LCDDisplay const&);
+        void operator=(LCDDisplay const&);
+public:
+        static LCDDisplay& inst() {
+                static LCDDisplay _ref;
+                return _ref;
+        }
         void setFirstLine(const char* p);
         const char *getFirstLine() const { return firstLine; }
         void setSecondLine(const char* p);