Lチカ

Python

GPIOを扱うのをやってなかったのでやってみた。

#!/usr/bin/python3
# -*- coding: utf-8 -*-
import RPi.GPIO as GPIO
import time

GPIO.setmode(GPIO.BCM)
GPIO.setup(4,GPIO.OUT)
cnt = 0

try:
    while cnt<9:
        GPIO.output(4,True)
        time.sleep(0.005)
        GPIO.output(4,False)
        time.sleep(0.51)

except KeyboardInterrupt:
        print("Key Stop")
        pass
        GPIO.cleanup()
No tags for this post.
タイトルとURLをコピーしました