mirror of
https://github.com/elua/elua.git
synced 2025-01-25 01:02:54 +08:00
Change LCD I2C slave addresses to 7C-7F
The old slave addresses, F2, F3, F6, F7 are reserved for 10-bit I2C addressing. This changes them to values that are least likely to conflist with other devices: 7C-7F are registered to two LCD display devices.
This commit is contained in:
parent
a05c209ab2
commit
f048bece4b
@ -23,8 +23,8 @@
|
||||
// Command address is followed by a dingle byte giving the command to perform
|
||||
// Data address is followed by multiple bytes of ASCII data to display
|
||||
// on the character display at the current cursor location.
|
||||
#define LCD_CMD 0xF6
|
||||
#define LCD_DATA 0xF2
|
||||
#define LCD_CMD 0x7C
|
||||
#define LCD_DATA 0x7E
|
||||
|
||||
// Command bytes
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user