你好,我按照下面方式设置,可以设置上下拉的,用万用表量引脚电平也是正确的
>>> from machine import Pin
>>> gpio5 = Pin(Pin.GPIO5, Pin.IN, Pin.PULL_PU, 0)
>>> gpio5.read()
1
>>> gpio5 = Pin(Pin.GPIO5, Pin.IN, Pin.PULL_PD , 0)
>>>
0
请确认引脚对应关系是否正确