ソースを参照

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)

読み込み中…
キャンセル
保存