Using Multiple ADS1X15 on Single ESP32

Hi, The library I used is this one: GitHub - adafruit/Adafruit_ADS1X15: Driver for TI's ADS1015: 12-bit Differential or Single-Ended ADC with PGA and Comparator

It was the only one for the ADS1x15 made by adafruit I could find.

But looks like you nailed it, that seems to work using:

ads0.begin(0x49);
ads1.begin(0x48);

Thank you very much for the help!

1 Like