Fork of LCD-Window which works with Enhanced TextLCD from Wim
Fork of LcdWindow by
Diff: terminal.h
- Revision:
- 13:99b500b05716
- Parent:
- 2:5ac5bab7daaf
--- a/terminal.h Tue Jan 12 20:40:39 2016 +0000 +++ b/terminal.h Wed Jan 13 19:38:54 2016 +0000 @@ -51,6 +51,14 @@ virtual int getRows(){return _rows;}; virtual void clear(); virtual void character(int column, int row, int c); + /** + * disable Output on Display + */ + void disableDisplay(); + /** + * Enable Output on Display + */ + void enableDisplay(); private: Window* _window; @@ -58,6 +66,7 @@ unsigned int _columns; unsigned int _rows; char* createLine(); + bool _enabled; }; #endif \ No newline at end of file