blinking led on gpio port 4

master
mandlm 2015-12-23 21:09:52 +01:00
parent 133c13738f
commit 88b11438de
1 changed files with 23 additions and 0 deletions

23
led.py Executable file
View File

@ -0,0 +1,23 @@
#!/usr/bin/python
from time import sleep
import RPi.GPIO as GPIO
print 'blah'
try:
GPIO.setmode(GPIO.BCM)
GPIO.setup(4, GPIO.OUT)
while True:
GPIO.output(4, 1)
sleep(1)
GPIO.output(4, 0)
sleep(1)
except KeyboardInterrupt:
GPIO.output(4, 0)
finally:
GPIO.cleanup()
print 'end'