Hi,
I’ve run a few quick library examples with I2C controllers on the Tachyon with Pimoroni BME280 (bme280 Python library) and BME688 (bme688 Python library) sensors.
It should be noted that the I2C controller on the 40-pin header is on bus 1 (default), and the Qwiic I2C is on bus 2. The latter means that in the Python code you’ll need to select I2C bus 2.
Don’t forget to setup the Python virtual environment.
In the Python code, to select the I2C bus 2, use for example
from smbus2 import SMbus
bus = SMBus(2)