from machine import Pin # 导入Pin(开发板中Pin代表GPIO)
from time import sleep_ms # 导入时间

led = Pin(25, Pin.OUT)  # 定义一个LED灯,D25脚,输出
key = Pin(21, Pin.IN) # 定义一个按键,D21脚,输入
while 1:
    print(key.value())
    sleep_ms(500)