from machine import Pin from utime import sleep led = Pin(28, Pin.OUT) while True: led.value(1) sleep(5)