2014-05-04 12:40:51 +01:00
|
|
|
import pyb
|
2014-05-03 16:43:27 +01:00
|
|
|
from pyb import I2C
|
|
|
|
|
2019-12-13 05:43:17 +00:00
|
|
|
# test we can correctly create by id
|
|
|
|
for bus in (-1, 0, 1):
|
2015-05-28 11:06:12 +01:00
|
|
|
try:
|
|
|
|
I2C(bus)
|
|
|
|
print("I2C", bus)
|
|
|
|
except ValueError:
|
|
|
|
print("ValueError", bus)
|
|
|
|
|
2014-05-03 16:43:27 +01:00
|
|
|
i2c = I2C(1)
|
|
|
|
|
|
|
|
i2c.init(I2C.MASTER, baudrate=400000)
|
|
|
|
print(i2c.scan())
|
|
|
|
i2c.deinit()
|