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