mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
In LiquidCrystal, remove an unused variable
This commit is contained in:
@ -87,7 +87,6 @@ void LiquidCrystal::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
|
|||||||
_displayfunction |= LCD_2LINE;
|
_displayfunction |= LCD_2LINE;
|
||||||
}
|
}
|
||||||
_numlines = lines;
|
_numlines = lines;
|
||||||
_currline = 0;
|
|
||||||
|
|
||||||
setRowOffsets(0x00, 0x40, 0x00 + cols, 0x40 + cols);
|
setRowOffsets(0x00, 0x40, 0x00 + cols, 0x40 + cols);
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ private:
|
|||||||
|
|
||||||
uint8_t _initialized;
|
uint8_t _initialized;
|
||||||
|
|
||||||
uint8_t _numlines,_currline;
|
uint8_t _numlines;
|
||||||
uint8_t _row_offsets[4];
|
uint8_t _row_offsets[4];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user