In the ADS1015 Description at https://www.sparkfun.com/products/15334
it says…
" It also has an address jumper that lets you choose one of four unique addresses (0x48, 0x49, 0x4A, 0x4B). With this, you can connect up to four of these on the same I2C bus and have sixteen channels of ADC."
and later on in the parts description it says…
“The I2C address of the ADS1015 is 0x48 and is jumper selectable to 0x49, 0x4A, 0x4B. A multiplexer/Mux is required to communicate to multiple ADS1015 sensors on a single bus. If you need to use more than one ADS1015 sensor consider using the Qwiic Mux Breakout.”
These two comments seem to be in conflict as the first says…
“With this, you can connect up to four of these on the same I2C bus and have sixteen channels of ADC.”
But the second says…
" If you need to use more than one ADS1015 sensor consider using the Qwiic Mux Breakout."
Question 1: Am I understanding correctly that I can not “daisy chain” four (or more) ADS1015 devices on an I2C bus with out using the
SparkFun Qwiic Mux Breakout - 8 Channel (TCA9548A)
Question 2: To read the data for each of the 4-channels on the ADS1015 must I request data from each address individually like…
read address 0x48,
then read address 0x49,
then read address0x4A,
then then address 0x4B
or will requesting data from 0x48 retrieve the data from each of the four ADC’s?
Thanks for any help.