Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Long press delay (parameterized) #31

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions listen-for-shutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,36 @@

import RPi.GPIO as GPIO
import subprocess
import time
from time import sleep

button_gpio=3
relay_gpio=4

short_press=0.1
long_press=5

GPIO.setmode(GPIO.BCM)
GPIO.setup(3, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.wait_for_edge(3, GPIO.FALLING)
GPIO.setup(button_gpio, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(relay_gpio, GPIO.OUT)

def main():
relay_state=GPIO.input(relay_gpio)
while True:
GPIO.wait_for_edge(button_gpio, GPIO.FALLING)
counter = 0
while GPIO.input(button_gpio) == 0 and counter < long_press:
time.sleep(0.1)
counter = round(counter + 0.1, 1)
print('Shutdown button is pressed ' + str(counter))
if counter >= long_press:
print('Shutting down')
subprocess.call(['shutdown', '-h', 'now'], shell=False)
elif counter >= short_press:
relay_state = not relay_state
print('Changing relay state to: ' + str(relay_state))
GPIO.output(relay_gpio, relay_state)
time.sleep(0.5)

subprocess.call(['shutdown', '-h', 'now'], shell=False)
if __name__ == '__main__':
main()