You can only talk to one I2C at a time. If you’re going to use the same address, then you’ve got to put a multiplexer between them. To make it interesting, I’ll send you to this version that is also controlled by I2C (but digital pin versions may be easier to program if you’re very new to XOD, since you’ll only deal with one I2C address).
However, your device appears to also be controlled by SPI, if it’s like this one
It says “It has the same specifications but can use either I2C or SPI. For simple easy wiring, go with I2C. If you want to connect a bunch of sensors without worrying about I2C address collisions, go with SPI.”
That’s really your easiest solution, to use SPI (though the multiplex solution is pretty similar, logically)… Each Chip Select from each device will sit on a different Digital Pin on the Aruino, and they all share the other MISO, MOSI, SCK of SPI
You still have to time it so you talk to only one Chip Select at a time (usually pulling to ground to select). I use Output Pulse in XOD for that type of function, and Defer Node back to the DO input pulse of the I2C or SPI.
~xbx~