switch all leds off when exiting
This commit is contained in:
parent
47d3bebbb5
commit
93d2aa427e
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
@ -96,7 +96,10 @@ if __name__ == '__main__':
|
|||||||
setConfiguredLedColor()
|
setConfiguredLedColor()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
GPIO.wait_for_edge(dummyPin, GPIO.RISING)
|
GPIO.wait_for_edge(dummyPin, GPIO.RISING)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print 'exiting'
|
||||||
finally:
|
finally:
|
||||||
GPIO.cleanup()
|
setLeds(0, 0, 0)
|
||||||
|
GPIO.cleanup()
|
||||||
|
Reference in New Issue
Block a user