from machine import Pin
import time
time.sleep(0.1) # Wait for USB to become ready
led = Pin(3, Pin.OUT)
while True:
led.toggle()
time.sleep(0.5)
from machine import Pin
import time
time.sleep(0.1) # Wait for USB to become ready
led = Pin(3, Pin.OUT)
while True:
led.toggle()
time.sleep(0.5)