SmartREST client reference implementation for the u-blox C027 mbed compatible device.

Dependencies:   C027 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832

Fork of MbedSmartRestTest by Vincent Wochnik

Files at this revision

API Documentation at this revision

Comitter:
vwochnik
Date:
Thu Feb 20 11:57:18 2014 +0000
Parent:
20:ef9cc1b42e9d
Child:
22:3a595f7826af
Commit message:
fix

Changed in this revision

io.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/io.cpp	Thu Feb 20 11:51:54 2014 +0000
+++ b/io.cpp	Thu Feb 20 11:57:18 2014 +0000
@@ -73,21 +73,21 @@
 {
     lcdDisplay.locate(0, 0);
     if ((rssi == 0) && (ber == 0))
-        lcdDisplay.printf("No signal\n");
+        lcdDisplay.printf("No signal                    \n");
     else
-        lcdDisplay.printf("RSSI: %d dBm  BER: %d %%\n", rssi, ber);
+        lcdDisplay.printf("RSSI: %d dBm  BER: %d %%    \n", rssi, ber);
 }
 
 void lcd_tenant(const char* tenant)
 {
     lcdDisplay.locate(0, 11);
-    lcdDisplay.printf("Tenant: %s\n", tenant);
+    lcdDisplay.printf("Tenant: %s                                        \n", tenant);
 }
 
 void lcd_status(const char* status)
 {
     lcdDisplay.locate(0, 22);
-    lcdDisplay.printf("%s\n", status);
+    lcdDisplay.printf("%s                                                                                \n", status);
 }
 
 void timer_callback(void const*)