液晶ディスプレイの接続確認用プログラムです。
main.py
import machine
sda = machine.Pin(6)
scl = machine.Pin(7)
bus = machine.I2C(1,sda=sda, scl=scl, freq=400000)
print(bus.scan())
Go to list of users who liked
More than 1 year has passed since last update.
液晶ディスプレイの接続確認用プログラムです。
import machine
sda = machine.Pin(6)
scl = machine.Pin(7)
bus = machine.I2C(1,sda=sda, scl=scl, freq=400000)
print(bus.scan())
Register as a new user and use Qiita more conveniently
Go to list of users who liked