Search found 2 matches

by jdiazg
Mon Mar 23, 2020 1:59 am
Forum: ESP32 Arduino
Topic: WROVER (v3) LCD not working with i2c
Replies: 4
Views: 7485

Re: WROVER (v3) LCD not working with i2c

-Rudy- wrote:
Fri Dec 29, 2017 4:36 pm
I don't know if you found a solution yet, but I have had to modify a device's library files when I had the same problem.
I have used this:

#define SDA 23
#define SCL 19

and

Wire.begin(SDA,SCL);

Doing so, you can assing the lines
by jdiazg
Mon Mar 23, 2020 1:55 am
Forum: ESP32 Arduino
Topic: WROVER (v3) LCD not working with i2c
Replies: 4
Views: 7485

Re: WROVER (v3) LCD not working with i2c

I have the same problem; i have two codes, one for two I2C sensors, and works fine; I have a code for the LCD and also works fine. When I mix them, the LCD initializes properly, the sensors give valid data, but they can not be displayed at LCD. I guess that is not a problem of SDA/SCL lines, since a...