diff options
author | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-07-04 16:58:54 +0800 |
---|---|---|
committer | Stanley Huang <stanleyhuangyc@gmail.com> | 2013-07-04 16:58:54 +0800 |
commit | 4ff68b8f1a9706aa2bb936ed541848343602517c (patch) | |
tree | 9b862790817becea49f98699a20e445a7344f382 /libraries/MultiLCD/MultiLCD.h | |
parent | 2ca1e8f7c391a2d8629aaea8d27b14c63cf7e17d (diff) | |
download | 2021-arduino-obd-4ff68b8f1a9706aa2bb936ed541848343602517c.tar.gz 2021-arduino-obd-4ff68b8f1a9706aa2bb936ed541848343602517c.tar.bz2 2021-arduino-obd-4ff68b8f1a9706aa2bb936ed541848343602517c.zip |
update MultiLCD library
Diffstat (limited to 'libraries/MultiLCD/MultiLCD.h')
-rw-r--r-- | libraries/MultiLCD/MultiLCD.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libraries/MultiLCD/MultiLCD.h b/libraries/MultiLCD/MultiLCD.h index 0809bf6..734ed70 100644 --- a/libraries/MultiLCD/MultiLCD.h +++ b/libraries/MultiLCD/MultiLCD.h @@ -28,7 +28,6 @@ public: virtual void backlight(bool on) {} virtual byte getLines() = 0; virtual byte getCols() = 0; - virtual void changeLine() {} virtual void clearLine(byte line) {} void draw(const PROGMEM byte* buffer, byte x, byte y, byte width, byte height) {} void printInt(uint16_t value, char padding = -1); @@ -53,11 +52,6 @@ public: setCursor(0, line); for (byte i = 14; i > 0; i--) write(' '); } - void changeLine() - { - column = 0; - line ++; - } void draw(const PROGMEM byte* buffer, byte x, byte y, byte width, byte height); private: void writeDigit(byte n); @@ -73,11 +67,6 @@ public: byte getLines() { return 4; } byte getCols() { return 16; } void setCursor(byte column, byte line); - void changeLine() - { - m_column = 0; - m_page += 2; - } size_t write(uint8_t c); //void print(const char* s); void writeDigit(byte n); |