summaryrefslogtreecommitdiff
path: root/buttonctl/buttonctl.py
diff options
context:
space:
mode:
Diffstat (limited to 'buttonctl/buttonctl.py')
-rw-r--r--buttonctl/buttonctl.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/buttonctl/buttonctl.py b/buttonctl/buttonctl.py
deleted file mode 100644
index 26878f1..0000000
--- a/buttonctl/buttonctl.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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)
-