关于 Cpi.GPIO调用问题 python3.9 coolpi ubuntu20.04
-
执行程序CPi.GPIO 不论是 borad 还是RK
#GPIO.setmode(GPIO.BOARD)
Gpio.setmode(GPIO.RK)
之后执行这个语句
GPIO.setup(32, GPIO.OUT,initial=GPIO.LOW)
后 出现这个提示
SystemError: more argument specifiers than keyword list entries (remaining format:'i')
求指导。 -
@bg8wj 看报错提示啊,不是很清楚了。输入参数过多。
改成GPIO.setup(32, GPIO.OUT)试试https://www.cool-pi.com/topic/136/coolpi-4b-python3-gpio-operation-compatable-with-raspberry-pi/17
-
@AugustRobot_Zou x谢谢,果然是如此。修改后两个语句初始化。可以用了。