ST7567S 12864 (128x64) I2C COG LCD #2560
JamoDevNich
started this conversation in
General
Replies: 1 comment
-
Thanks for your report. The mapping between the display and the controller memory differs from display to display, thats why there might be missing pixel or space between pixel and border. Also the contrast is always specific to the display itself. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Had a quick browse through some of the existing issues where this LCD was mentioned, and tried a few of the constructors to see what works.
All of these have been tested on an ESP32 (not a newer S2, S3, or C3) @ 3.3v using hardware SPI
u8g2.setI2CAddress(0x3F * 2)
; prior tou8g2.begin();
u8g2.setI2CAddress(0x3F * 2)
; prior tou8g2.begin();
u8g2.setI2CAddress(0x3F * 2)
; prior tou8g2.begin();
u8g2.setI2CAddress(0x3F * 2)
; prior tou8g2.begin();
u8g2.setContrast(160);
Hope this is helpful to someone.
Beta Was this translation helpful? Give feedback.
All reactions