-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python | ||
""" | ||
Shutdown script, that waits for a falling edge on a specified GPIO pin | ||
""" | ||
import os | ||
|
||
try: | ||
from RPi import GPIO | ||
except RuntimeError: | ||
print("Error importing RPi.GPIO, need sudo?") | ||
POWER_BUTTON_PIN = 27 | ||
GPIO.setmode(GPIO.BCM) | ||
GPIO.setup(POWER_BUTTON_PIN, GPIO.IN, pull_up_down=GPIO.PUD_UP) | ||
|
||
print('Monitoring shutdown button for falling edge') | ||
while True: | ||
GPIO.wait_for_edge(POWER_BUTTON_PIN, GPIO.FALLING) | ||
print('Shutdown button pressed, shutting down, farewell') | ||
os.system('systemctl poweroff') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Unit] | ||
Description=Monitors powerbutton to send shutdown command | ||
|
||
[Service] | ||
Restart=on-abnormal | ||
ExecStart=/usr/local/bin/powerbutton.py | ||
|
||
[Install] | ||
WantedBy=multi-user.target |