我正在尝试使用python读取Raspberry Pi上的GPIO引脚,并且不知道如何读取不仅仅是0(LOW)
或1(HIGH)
(GPIO.input)的值,因为我有此旋转开关>
GPIO.setup(15,GPIO.IN)
VALUE=GPIO.input(14)
答案 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)