Python,在Raspberry Pi上读取GPIO引脚

时间:2019-04-04 19:21:54

标签: python input raspberry-pi gpio pins

我正在尝试使用python读取Raspberry Pi上的GPIO引脚,并且不知道如何读取不仅仅是0(LOW)1(HIGH)(GPIO.input)的值,因为我有此旋转开关

GPIO.setup(15,GPIO.IN)
VALUE=GPIO.input(14)

1 个答案:

答案 0 :(得分:0)

我认为这可能会有所帮助。
gpiozero:

import Button
from time import sleep

button = Button(2)

while True:
    if button.is_pressed:
        print("Pressed")
    else:
        print("Released")
    sleep(1)