switch all leds off when exiting

master
mandlm 2016-01-08 11:05:49 +01:00
parent 47d3bebbb5
commit 93d2aa427e
1 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import glob
import os
@ -98,5 +98,8 @@ if __name__ == '__main__':
try:
while True:
GPIO.wait_for_edge(dummyPin, GPIO.RISING)
except KeyboardInterrupt:
print 'exiting'
finally:
setLeds(0, 0, 0)
GPIO.cleanup()