from machine import Pin
import time
led1 = Pin(2, Pin.OUT)
while True:
led1.on()
time.sleep(0.3)
led1.off()
time.sleep(0.3)from machine import Pin
import time
led1 = Pin(2, Pin.OUT)
while True:
led1.on()
time.sleep(0.3)
led1.off()
time.sleep(0.3)