from machine import Pin
from utime import sleep
print("hello,it is blink prog...")
led = Pin(2, Pin.OUT)
while True:
led.on()
sleep(0.125)
led.off()
sleep(0.125)from machine import Pin
from utime import sleep
print("hello,it is blink prog...")
led = Pin(2, Pin.OUT)
while True:
led.on()
sleep(0.125)
led.off()
sleep(0.125)