neroroxxx / RoxMux

Collection of Multiplexer Controllers for some commonly used multiplexer chips.
Other
15 stars 5 forks source link

SDA and SCL pins #4

Closed Menellos closed 2 years ago

Menellos commented 2 years ago

How can i change defaut I2C pins? I'm using esp32

Menellos commented 2 years ago

this worked for me

void setup(){

ifdef ARDUINO_ARCH_ESP32

Wire.begin(sda,scl);

endif

Wire.begin(); }