A TextDisplay driver that supports graphical displays using on of the SED133x conrtrolers. Allows stdout and stderr output to be redirected to the display.

Revision:
1:18c56f038905
Parent:
0:9e72c57b16fd
Child:
6:2f8aed3d2be4
--- a/TextLCD.h	Sat Jan 08 22:24:00 2011 +0000
+++ b/TextLCD.h	Sat Jan 15 16:02:56 2011 +0000
@@ -12,7 +12,7 @@
 public:
     TextLCD(PinName rs, PinName rw, PinName e,
             PinName d0, PinName d1, PinName d2, PinName d3,
-            uint16_t rows = 2, uint16_t columns = 16);
+            uint16_t rows = 2, uint16_t columns = 16, const char *name = NULL);
     virtual void character(uint16_t column, uint16_t row, int c);
     virtual uint16_t rows() {
         return _rows;