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 C12832 by
Diff: C12832_lcd.h
- Revision:
- 6:6b96b16aad47
- Parent:
- 5:0f53e522a2bf
- Child:
- 7:0f5a3b0f3cab
--- a/C12832_lcd.h Wed Dec 05 07:48:27 2012 +0000 +++ b/C12832_lcd.h Wed Dec 05 21:43:17 2012 +0000 @@ -164,7 +164,7 @@ void setmode(int mode); - int columns(void); + virtual int columns(void); /** calculate the max number of columns * @@ -172,7 +172,7 @@ * depends on actual font size * */ - int rows(void); + virtual int rows(void); /** put a char on the screen * @@ -180,7 +180,7 @@ * @returns printed char * */ - int _putc(int value); + virtual int _putc(int value); /** draw a character on given position out of the active font to the LCD * @@ -196,7 +196,7 @@ * @param x x-position (top left) * @param y y-position */ - void locate(int x, int y); + virtual void locate(int x, int y); /** setup auto update of screen *