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 LcdWindow by
Diff: textlcdadapter.h
- Revision:
- 10:d40c70908bf0
- Parent:
- 4:aa08e82834dc
- Child:
- 12:393329d0e050
--- a/textlcdadapter.h Tue Feb 22 22:57:44 2011 +0000
+++ b/textlcdadapter.h Mon Jan 04 20:22:17 2016 +0000
@@ -32,8 +32,9 @@
class TextLCDAdapter : public Window {
public:
- TextLCDAdapter(TextLCD* lcd);
+ TextLCDAdapter(TextLCD_Base* lcd);
virtual void clear();
+ virtual void writeText(const unsigned int column, const unsigned int row, const char text[]);
virtual int getRows();
virtual int getColumns();
@@ -42,7 +43,7 @@
int printf(const char* format, ...);
private:
- TextLCD *_lcd;
+ TextLCD_Base *_lcd;
};
