Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of TextLCD by
Revision 9:902917bcbfb9, committed 2018-05-03
- Comitter:
- mmdonatti
- Date:
- Thu May 03 19:59:11 2018 +0000
- Parent:
- 8:308d188a2d3a
- Commit message:
- minor modifications
Changed in this revision
TextLCD.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 308d188a2d3a -r 902917bcbfb9 TextLCD.h --- a/TextLCD.h Thu Jan 02 21:07:01 2014 +0000 +++ b/TextLCD.h Thu May 03 19:59:11 2018 +0000 @@ -87,6 +87,8 @@ int rows(); int columns(); + + void character(int column, int row, int c); protected: @@ -95,7 +97,7 @@ virtual int _getc(); 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);