I2C Address of the OLED display for an Heltec LoRa module?
Posted: Wed Jul 21, 2021 4:37 pm
The Heltec LoRa V1 ESP32module appears to have a distinct I2C connection to their OLED display.
I tried to access the display using the standard SSD1306 librry that way:
#ifdef CONTR_IS_HELTEC
SSD1306Wire display(0x3c, 15, 4); //OLED 128*64 soldered
#endif
since they announced to use GPIO15 as SCL and GPIO04 as SDA.
The module is however not accessible under the standard address 0x3C.
does someone know how to run that display with the regular library?
I would not want to use the heltec library since they use a different syntax and I would have to rewrite hundreds of lines of code and maintain two versions...
I tried to access the display using the standard SSD1306 librry that way:
#ifdef CONTR_IS_HELTEC
SSD1306Wire display(0x3c, 15, 4); //OLED 128*64 soldered
#endif
since they announced to use GPIO15 as SCL and GPIO04 as SDA.
The module is however not accessible under the standard address 0x3C.
does someone know how to run that display with the regular library?
I would not want to use the heltec library since they use a different syntax and I would have to rewrite hundreds of lines of code and maintain two versions...