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

Fork of LcdWindow by Hendrik Lipka

Revision:
3:e5d5e2fe4bf6
Parent:
2:5ac5bab7daaf
--- a/lcd.h	Sat Nov 27 22:54:13 2010 +0000
+++ b/lcd.h	Sun Nov 28 22:09:54 2010 +0000
@@ -42,9 +42,10 @@
     protected:
         const unsigned int _columns;
         const unsigned int _rows;
-        TextLCDBase(unsigned int columns, unsigned int rows):_columns(columns),_rows(rows)
+        TextLCDBase(unsigned int columns, unsigned int rows):Window(),_columns(columns),_rows(rows)
         {
-        } 
+        };
+        void test(){printf("x");};
 };
 
 #endif /*LCD_H_*/