0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【高先さんの電子工作】第11回:第6回の補足 ブレッドボードを理解する

Posted at

液晶ディスプレイの接続確認用プログラムです。

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())
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?