TextLCD library for controlling various LCD panels based on the HD44780 4-bit interface

Dependents:   TextLCD_HelloWorld analog_test AVR_standalone_writer XBeeApi_RemoteCommand ... more

Files at this revision

API Documentation at this revision

Comitter:
simon
Date:
Sat May 29 10:15:04 2010 +0000
Parent:
4:bf5b706f8d32
Child:
6:e4cb7ddee0d3
Commit message:

Changed in this revision

TextLCD.h Show annotated file Show diff for this revision Revisions of this file
--- a/TextLCD.h	Thu May 27 18:03:45 2010 +0000
+++ b/TextLCD.h	Sat May 29 10:15:04 2010 +0000
@@ -25,16 +25,16 @@
 
 #include "mbed.h"
 
-/** A TextLCD interface for 4-bit HD44780-based LCDs
+/** A TextLCD interface for driving 4-bit HD44780-based LCDs
  *
- * Supports a number of different panel configurations
+ * Currently supports 16x2, 20x2 and 20x4 panels
  *
  * @code
  * #include "mbed.h"
  * #include "TextLCD.h"
- *
- * TextLCD lcd(p5, p6, p7, p8, p9);
- *
+ * 
+ * TextLCD lcd(p10, p12, p15, p16, p29, p30); // rs, e, d0-d3
+ * 
  * int main() {
  *     lcd.printf("Hello World!\n");
  * }