TextLCD library for controlling various LCD panels based on the HD44780 4-bit interface
Dependents: Tarea_Encoder PID_con_Encoder
Fork of TextLCD by
Revision 9:6f50014a1b62, committed 2014-04-04
- Comitter:
- diego_carvajal
- Date:
- Fri Apr 04 16:53:08 2014 +0000
- Parent:
- 8:308d188a2d3a
- Commit message:
- Tarea_Encoder
Changed in this revision
TextLCD.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 308d188a2d3a -r 6f50014a1b62 TextLCD.h --- a/TextLCD.h Thu Jan 02 21:07:01 2014 +0000 +++ b/TextLCD.h Fri Apr 04 16:53:08 2014 +0000 @@ -42,6 +42,8 @@ */ class TextLCD : public Stream { public: + + void writeCommand(int command); /** LCD panel format */ enum LCDType { @@ -97,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); + void writeData(int data); DigitalOut _rs, _e;