mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
In LiquidCrystal, remove an unused variable
This commit is contained in:
parent
8c6bcf0c84
commit
9552db3fe4
@ -87,7 +87,6 @@ void LiquidCrystal::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
|
||||
_displayfunction |= LCD_2LINE;
|
||||
}
|
||||
_numlines = lines;
|
||||
_currline = 0;
|
||||
|
||||
setRowOffsets(0x00, 0x40, 0x00 + cols, 0x40 + cols);
|
||||
|
||||
|
@ -101,7 +101,7 @@ private:
|
||||
|
||||
uint8_t _initialized;
|
||||
|
||||
uint8_t _numlines,_currline;
|
||||
uint8_t _numlines;
|
||||
uint8_t _row_offsets[4];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user