1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Make the LiquidCrystal row offsets uint8_t instead of int

Since these are memory addresses, there is no need to make them signed.
Furthermore, the HD44780 chip supports memory addresses up to 0x67, so
uint8_t shouldbe sufficient.
This commit is contained in:
Matthijs Kooijman 2013-12-18 12:37:01 +01:00
parent 03a6b2c54a
commit 3fdda81a1a

View File

@ -102,7 +102,7 @@ private:
uint8_t _initialized;
uint8_t _numlines,_currline;
int _row_offsets[4];
uint8_t _row_offsets[4];
};
#endif