master
mandlm 2016-02-01 08:55:27 +01:00
parent 4cb09d6ff1
commit 3f4a5ca91e
1 changed files with 1 additions and 3 deletions

View File

@ -8,7 +8,6 @@ ledPin = 14
buttonPin = 16
def buttonHandler(channel):
print "button pushed"
GPIO.output(ledPin, not GPIO.input(ledPin))
try:
@ -23,8 +22,7 @@ try:
while True:
GPIO.wait_for_edge(15, GPIO.RISING)
print "blah"
except KeyboardInterrupt:
GPIO.output(ledPin, False)
pass
finally:
GPIO.cleanup()