from machine import Pin from utime import sleep LED = Pin(5, Pin.OUT) while True : LED.toggle() sleep(0.5)