A driver code library for Text LCD panels using the 4-bit HD44780 lcd display driver.
Fork of TextLCD by
Diff: TextLCD.h
- Revision:
- 9:b38a0bcedd44
- Parent:
- 8:122fc41ed965
--- 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;