V4

Dependencies:   BMP280

Fork of Thread_Communication_V4_fortest by BDG

Revision:
14:7c4d87dfc388
Parent:
0:cb3a5c15b01e
--- a/LCD.h	Fri Jan 05 19:47:33 2018 +0000
+++ b/LCD.h	Sat Jan 06 12:22:12 2018 +0000
@@ -13,6 +13,8 @@
 
 #define LINE1    0x80        // Start address of first line
 #define LINE2    0xC0        // Start address of second line
+#define LINE3    0x94
+#define LINE4    0xD4
 
 #define LCD_CLR             (LCD_DATA(CLEAR,CMD))
 #define LCD_HOME            (LCD_DATA(HOME,CMD))
@@ -21,7 +23,7 @@
 public:
 LCD(PinName RS, PinName E, PinName d4, PinName d5, PinName d6, PinName d7);
 void Clear(void);
-void Write(char text[16]);
+void Write(char text[80]);
 void RowSelect(int row);
 
 protected: