from machine import Pin from time import sleep, sleep_ms led=Pin(28,Pin.OUT) while True: led.toggle() sleep(1)