from time import sleep
from machine import Pin
sleep(0.1) # Wait for USB to become ready
LED = Pin(25,Pin.OUT)
LED.value(1)
while True:
LED.toggle()
sleep(1)
from time import sleep
from machine import Pin
sleep(0.1) # Wait for USB to become ready
LED = Pin(25,Pin.OUT)
LED.value(1)
while True:
LED.toggle()
sleep(1)