I have read that "I2C standards does not allow to connect slaves with same address on same master.". Also each chip vendor assigns an address for I2C communication.
Question 1- Would all ADS7830
have same I2C address (I think it is 0x4B
)
Question 2 - If all ADS7830
have same I2C address, does this mean I can't use more than one in the same circuit?
0x4b
which is the default i2c address for ADS7830 Module. Though I don't understand from where this value comes and what the next 3 addresses should be – Manu Chadha Jan 03 '22 at 16:2810010
followed byA1
andA0
. So possible addresses are hex 0x48 (for 00), 0x49 (for 01), 0x4A (for 10) and 0x4B (for 11). The default input for pins A1 and A0 seem to be high (pull up) so 4B is the default address. If I ground A1 and A0 then I get pattern 48, 49,4A. So if I want to use 4 ADC, I'll need to wire their addresses like this. – Manu Chadha Jan 03 '22 at 19:26