shutdown utton now writes some syslog

py3
Level2 DoorBuzz 2016-03-10 20:25:13 +01:00
parent ed85f9a89f
commit 01a6c13db3
1 changed files with 3 additions and 0 deletions

View File

@ -3,15 +3,18 @@ import RPi.GPIO as GPIO
import time
import os
GPIO.setmode(GPIO.BCM)
GPIO.setup(buttonpin, GPIO.IN, pull_up_down=GPIO.PUD_UP)
while True:
print "waiting..."
os.system('logger shutdownbutton waiting for press...')
try:
GPIO.wait_for_edge(buttonpin, GPIO.FALLING)
print('Button Pressed')
os.system('logger shutdownbutton pressen. bye bye')
os.system("shutdown now -h")
except KeyboardInterrupt:
GPIO.cleanup() # clean up GPIO on CTRL+C exit