Closed nusatiy closed 3 years ago
Hello friends. Could you explain how this works when used?
TwoWire I2Cone = TwoWire (0); TwoWire I2Ctwo = TwoWire (1);
How do I tell the Adafruit ADS1115 library that I need to use the second twoWire (1) bus?
I tried pointing as Adafruit_ADS1115 ads1115 (& I2Ctwo); This does not work.
Pass the bus in when you call begin(). This is a recent change added with #58.
Hello friends. Could you explain how this works when used?
include
include
include
define SDA_1 27
define SCL_1 26
define SDA_2 33
define SCL_2 32
TwoWire I2Cone = TwoWire (0); TwoWire I2Ctwo = TwoWire (1);
How do I tell the Adafruit ADS1115 library that I need to use the second twoWire (1) bus?
I tried pointing as Adafruit_ADS1115 ads1115 (& I2Ctwo); This does not work.