summaryrefslogtreecommitdiff
path: root/buttonctl/buttonctl.py
diff options
context:
space:
mode:
authorIngar <ingar@telenet.be>2022-02-27 11:59:40 +0100
committerIngar <ingar@telenet.be>2022-02-27 12:00:40 +0100
commitba5673c7e1c4c2334adecd44e75ab9d1e9ba0183 (patch)
tree2a78d64554f84ad8bc7b5bd1028dfb061ec48e9e /buttonctl/buttonctl.py
parent34c18bf246aed981b2cc6e0e068a5286155837e8 (diff)
Added script to handle soft button events.
Diffstat (limited to 'buttonctl/buttonctl.py')
-rw-r--r--buttonctl/buttonctl.py16
1 files changed, 16 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)
+