소스 검색

made esc button also shut down

master
mortie 6 년 전
부모
커밋
3d0f97a8d5
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9
    0
      scripts/esc-button.py

+ 9
- 0
scripts/esc-button.py 파일 보기

@@ -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)

Loading…
취소
저장