0

我需要为树莓派 3 编写两个程序。在程序 1 中,我将一些引脚定义为输出并在其上设置一个值,然后我想在程序 2 中获取这些引脚的状态(值),换句话说,我想设置一个值在我想要的时候固定在一个进程中并读取另一个进程中的值 - 我使用 raspbian

4

1 回答 1

1

With function GPIO.gpio_function(pin) you can determine if pin is set like INPUT or OUTPUT.

To check if INPUT is HIGH or LOW, you can use if(GPIO.input(channel)==GPIO.LOW)) or if(GPIO.input(channel)==GPIO.HIGH))

Hope, it was helpful for you.

于 2018-10-19T10:08:14.873 回答