树莓派-RuntimeError: You must setup() the GPIO channel first

错误信息

    while GPIO.input(key):
RuntimeError: You must setup() the GPIO channel first

解决方法

加入代码

GPIO.setup(key,GPIO.IN)

你可能感兴趣的:(Python,python)