Ver código fonte

made esc button also shut down

master
mortie 6 anos atrás
pai
commit
3d0f97a8d5
1 arquivos alterados com 9 adições e 0 exclusões
  1. 9
    0
      scripts/esc-button.py

+ 9
- 0
scripts/esc-button.py Ver arquivo

@@ -9,6 +9,9 @@ GPIO.setup(3, GPIO.IN)

pressed = False

shutdown = 3 * 10
iterations = 0

while True:
current = not GPIO.input(3)

@@ -18,5 +21,11 @@ while True:
elif not current and pressed:
call(["xdotool", "keyup", "Escape"])
pressed = False
iterations = 0

if current:
iterations += 1
if iterations > shutdown:
call(["sudo", "shutdown", "-h", "now"])

time.sleep(0.1)

Carregando…
Cancelar
Salvar