C.Dupaty 03-2018 test on NUCLEO STM32-F411RE LCD 2x16, I2C interface Chinese model, adress I2C=0x4E (search on AliExpress for IIC/I2C 1602 Module) Important ! configure in TextLCD_Config.h : Valid only one of the lines : #define DFROBOT 0 // chinese OK #define YWROBOT 0 // chinese 0K #define SYDZ 1 // chinese OK Font is the same as http://www.farnell.com/datasheets/2362518.pdf
Fork of TextLCD by
/* Hello World! for the TextLCD Enhanced Library C.Dupaty 03-2018 test on NUCLEO STM32-F411RE LCD 2x16, I2C interface Chinese model, adress I2C=0x4E (search on AliExpress for IIC/I2C 1602 Module) Important ! configure in TextLCD_Config.h : Valid only one of the lines :
- define DFROBOT 0 chinese OK
- define YWROBOT 0 chinese 0K
- define SYDZ 1 chinese OK Font is the same as http://www.farnell.com/datasheets/2362518.pdf
- /
Diff: TextLCD.cpp
- Revision:
- 4:bf5b706f8d32
- Parent:
- 2:227356c7d12c
- Child:
- 6:e4cb7ddee0d3
diff -r 2a46d5820a78 -r bf5b706f8d32 TextLCD.cpp --- a/TextLCD.cpp Thu May 27 17:56:12 2010 +0000 +++ b/TextLCD.cpp Thu May 27 18:03:45 2010 +0000 @@ -126,11 +126,11 @@ return 0xd4 + column; } case LCD16x2B: - return 0x80 + (row * 0x40) + column; + return 0x80 + (row * 40) + column; case LCD16x2: case LCD20x2: default: - return 0x80 + (row * 40) + column; + return 0x80 + (row * 0x40) + column; } }