Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small tweak #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions SafeShutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from gpiozero import Button, LED
import os
from signal import pause
import subprocess

powerPin = 3
resetPin = 2
Expand All @@ -15,16 +16,26 @@

#functions that handle button events
def when_pressed():
led.blink(.2,.2)
os.system("sudo killall emulationstation && sleep 5s && sudo shutdown -h now")
try:
led.blink(.2,.2)
subprocess.call("sudo killall emulationstation && sleep 5s && sudo shutdown -h now")
except:
#assume that emulationstation is dead already (crashed?)
led.blink(.2,.2)
os.system("sudo shutdown -h now")

def when_released():
led.on()
def reboot():
os.system("sudo killall emulationstation && sleep 5s && sudo reboot")
led.on()
def reboot():
try:
subprocess.call("sudo killall emulationstation && sleep 5s && sudo reboot")
except:
os.system("sudo reboot")


btn = Button(powerPin, hold_time=hold)
rebootBtn = Button(resetPin)
rebootBtn.when_pressed = reboot
btn.when_pressed = when_pressed
btn.when_released = when_released
pause()
pause()