forked from crcerror/retroflag-picase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSafeShutdown.py
44 lines (39 loc) · 1.09 KB
/
SafeShutdown.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
from gpiozero import Button, LED
import os
from signal import pause
import subprocess
powerPin = 3
resetPin = 2
ledPin = 14
powerenPin = 4
hold = 1
led = LED(ledPin)
led.on()
power = LED(powerenPin)
power.on()
#functions that handle button events
def when_pressed():
led.blink(.2,.2)
output = int(subprocess.check_output(['/opt/RetroFlag/multi_switch.sh', '--es-pid']))
if output:
os.system("/opt/RetroFlag/multi_switch.sh --es-poweroff")
else:
os.system("sudo shutdown -h now")
def when_released():
led.on()
def reboot():
output = int(subprocess.check_output(['/opt/RetroFlag/multi_switch.sh', '--es-pid']))
output_rc = int(subprocess.check_output(['/opt/RetroFlag/multi_switch.sh', '--rc-pid']))
if output_rc:
os.system("/opt/RetroFlag/multi_switch.sh --closeemu")
elif output:
os.system("/opt/RetroFlag/multi_switch.sh --es-restart")
else:
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()