from machine import Pin # 导入Pin(开发板中Pin代表GPIO)
from time import sleep_ms # 导入时间
 
led = Pin(25, Pin.OUT)  # 定义一个LED灯,D25脚,输出
while 1:
    led.on()  # 灯亮
    sleep_ms(500)  # 等待500毫秒
    led.off()  # 灯灭
    sleep_ms(500)
Loading
esp32-devkit-c-v4