from machine import Pin
from utime import sleep
print("hello, world.")
led=Pin(13, Pin.OUT)
while True:
led.toggle()
sleep(0.5)from machine import Pin
from utime import sleep
print("hello, world.")
led=Pin(13, Pin.OUT)
while True:
led.toggle()
sleep(0.5)