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:
3:c84bc6d1dc52
Parent:
2:8596e06f241f
Child:
4:0cbf500f8650
--- a/TextDisplay.h	Wed Jan 26 21:56:12 2011 +0000
+++ b/TextDisplay.h	Sat Jan 29 13:02:38 2011 +0000
@@ -17,7 +17,24 @@
 #define MBED_TEXTDISPLAY_H
 
 #include "mbed.h"
+#include "mbed.h"
 
+/** Text diaplay class, includes drives for different types of displays
+ *
+ * Example:
+ * @code
+ * // simple test for TextDisplay class
+ * #include "mbed.h"
+ * #include "TextDisplay.h"
+ * 
+ * 
+ * 
+ * int main() {
+ *      lcd.printf("Hello TextDisplay world!\r\n");
+ * }
+ * @endcode
+ */
+ 
 class TextDisplay : public Stream {
 public: