A driver code library for Text LCD panels using the 4-bit HD44780 lcd display driver.
Fork of TextLCD by
Revision 9:b38a0bcedd44, committed 2013-12-13
- Comitter:
- Wilmar87
- Date:
- Fri Dec 13 03:52:52 2013 +0000
- Parent:
- 8:122fc41ed965
- Commit message:
- yes;
Changed in this revision
TextLCD.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 122fc41ed965 -r b38a0bcedd44 TextLCD.h --- a/TextLCD.h Sun Dec 09 09:43:55 2012 +0000 +++ b/TextLCD.h Fri Dec 13 03:52:52 2013 +0000 @@ -42,6 +42,7 @@ */ class TextLCD : public Stream { public: +void writeCommand(int command); //CAMBIO EN LA LIBRERIA PARA USARSE EN CÓDIGO C /** LCD panel format */ enum LCDType { @@ -98,7 +99,7 @@ int address(int column, int row); void character(int column, int row, int c); void writeByte(int value); - void writeCommand(int command); + //id writeCommand(int command); void writeData(int data); DigitalOut _rs, _e;