如何在Python中获得键盘输入?

时间:2016-10-15 16:48:52

标签: python python-3.x raspberry-pi gpio

我正在为连接到Raspberry Pi GPIO的压电蜂鸣器编写Python脚本。听听我们到目前为止所得到的一切。

import RPi.GPIO as GPIO
from time import sleep
GPIO.setmode(GPIO.BCM)
GPIO.setup(24, GPIO.OUT)

time = 0.001

try:
        while True:
            GPIO.output(24, 1)
            sleep(time)
            GPIO.output(24, 0)
            sleep(time)

except:
    GPIO.cleanup()
    print "GPIO Cleaned Up!"

我希望能够在'While True'循环运行时按键盘上的向上和向下箭头来更改时间变量。任何帮助将不胜感激!

编辑:如果它可以通过ssh工作会很好。

1 个答案:

答案 0 :(得分:2)

Please see this link it explains how to read keystrokes in Python.