
from machine import Pin, I2C

i2c = I2C(
    0,
    scl=Pin(9),
    sda=Pin(8)
)

print(i2c.scan())
