Hello there.
So I bought some of these 0.49" OLED Displays, which claims to carry a SSD1306 Display driver, and I want to communicate with some of them by using I2C communication and a SINGLE Arduino (which I will later replace by any other MCU).
On the display manual it says their slave address is 0x78 for writing and 0x79 for reading.
I thought I could use a I2C Switcher to communicate with any of the Displays at once (as obviously all of them have the same slave address) and found this 8 channel I2C bus switcher from TI. Lot of people in the net say it's actually pretty simple to use. Thing is, when entering the slave address of the device you wanna communicate to, it's 4 MSB are not-configurable so, in a few words, you can ONLY SELECT devices which slave addresses go from 0x70 to 0x77 (see datasheet Table 1 on page 13), or that's what I understood.
So, does anybody has ever worked with any of these I2C Switchers?
Will it let me communicate with any address above 0x77?
Is there any other way to do it? I wouldn't like to use tons of 'normal' demuxes to implement this.
Thanks a lot in advance.