from machine import Pin
from time import sleep


led = Pin(27, Pin.OUT)

while True:
  led.on()
  sleep_ms(100)
  led.off()
  sleep_ms(100)
Board not found
wokwi-custom-board