Hi Mike,
I managed to do this using the following command :
from smbus2 import SMBus
bus = SMBus(1)
bus.write_byte_data(0x11, 0x11, 0x12)
to change from I2C adress 0x11 to 0x12
Hi Mike,
I managed to do this using the following command :
from smbus2 import SMBus
bus = SMBus(1)
bus.write_byte_data(0x11, 0x11, 0x12)
to change from I2C adress 0x11 to 0x12