Fork of LCD-Window which works with Enhanced TextLCD from Wim

Fork of LcdWindow by Hendrik Lipka

Revision:
10:d40c70908bf0
Parent:
4:aa08e82834dc
Child:
12:393329d0e050
--- a/textlcdadapter.h	Tue Feb 22 22:57:44 2011 +0000
+++ b/textlcdadapter.h	Mon Jan 04 20:22:17 2016 +0000
@@ -32,8 +32,9 @@
 class TextLCDAdapter : public Window {
 public:
 
-    TextLCDAdapter(TextLCD* lcd);
+    TextLCDAdapter(TextLCD_Base* lcd);
     virtual void clear();
+    virtual void writeText(const unsigned int column, const unsigned int row, const char text[]);
 
     virtual int getRows();
     virtual int getColumns();
@@ -42,7 +43,7 @@
     int printf(const char* format, ...);
     
     private:
-        TextLCD *_lcd;
+        TextLCD_Base *_lcd;
 
 };