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:
8:66be6a696e4e
Parent:
7:d79600310cfe
Child:
9:68ad299df12b
--- a/TextDisplay.h	Sat Jan 29 21:04:53 2011 +0000
+++ b/TextDisplay.h	Sat Jan 29 21:22:08 2011 +0000
@@ -19,7 +19,7 @@
 #include "mbed.h"
 #include "mbed.h"
 
-/** Text diaplay class, use one the derived classes
+/** TexDisplay class, use one the derived classes
  * Example:
  * @code
  / simple test for TextDisplay class
@@ -82,12 +82,12 @@
     * @paran row vertical positon
     */
     virtual void locate(uint16_t column, uint16_t row);
-     /** set foreground colour
-     * @param colour
+     /** set foreground colour if supported on display
+     * @param colour Hexadecimal 0xRRGGBB, RR = red level, GG = green level, BB = blue level
      */
     virtual void foreground(uint32_t colour);
-     /** set background colour
-     * @param colour
+     /** set background colour if supported on display
+     * @param colour Hexadecimal 0xRRGGBB, RR = red level, GG = green level, BB = blue level
      */
     virtual void background(uint32_t colour);
     // putc (from Stream)