I'm trying to connect an E-paper display and an RTC module on an esp32 via I2C. However, my esp32 board doesn't have a pin 21, so I have to set another pin. It's also worth mentioning that I'm using the Arduino IDE to program the ESP
I tried changing the pins like this on setup:
Wire.begin(12,14,100000);
But the pins didn't change
- How will I change the i2c pins?
- Is there any documentation on I2C on the ESP32?
This is the link to the code
Thank you in advance.