GPIOの配置
参照元公式ページ
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#gpio-and-the-40-pin-header
プログラム
GPIO17でLEDを点滅させるプログラム
sample1.py
from gpiozero import LED
from time import sleep
led = LED(17)
while True:
led.on()
sleep(1)
led.off()
sleep(1)
回路設計
下記の条件から抵抗値を求めます。
・LEDに10mA流したい
・LEDは2.0Vの電圧降下がある
・GPIOがONの時、3.3Vになる
手持ちに130Ωがなく、100Ωの抵抗で作成しました。
・GPIO17(11番ピン)
・GND(6番ピン)
実行
python sample1.py
LEDが1秒おきにピカピカしました!