diff options
| -rw-r--r-- | buttonctl/buttonctl.py | 16 | ||||
| -rw-r--r-- | buttonctl/systemd/button.service | 10 |
2 files changed, 26 insertions, 0 deletions
diff --git a/buttonctl/buttonctl.py b/buttonctl/buttonctl.py new file mode 100644 index 0000000..26878f1 --- /dev/null +++ b/buttonctl/buttonctl.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +import RPi.GPIO as GPIO +import subprocess + + +GPIO.setmode(GPIO.BCM) +GPIO.setup(26, GPIO.IN, pull_up_down=GPIO.PUD_UP) +GPIO.wait_for_edge(26, GPIO.FALLING) + +print ('button pressed') + +subprocess.call(['ledctl', 'boot'], shell=False) + +subprocess.call(['shutdown', '-h', 'now'], shell=False) + diff --git a/buttonctl/systemd/button.service b/buttonctl/systemd/button.service new file mode 100644 index 0000000..e77edd2 --- /dev/null +++ b/buttonctl/systemd/button.service @@ -0,0 +1,10 @@ +[Unit] +Description=watching soft button +After=local-fs.target + +[Service] +Type=simple +ExecStart=/usr/bin/buttonctl + +[Install] +WantedBy=multi-user.target |
