1

我试图用 python 读取我的 Raspberry Pi 上的 GPIO Pin,但不知道如何读取更多的值,而不仅仅是0(LOW)1(HIGH)(GPIO.input),因为我有这个旋转开关

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

1 回答 1

0

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

import Button
from time import sleep

button = Button(2)

while True:
    if button.is_pressed:
        print("Pressed")
    else:
        print("Released")
    sleep(1)
于 2020-04-05T18:14:42.613 回答