from machine import Pin

from time import sleep_ms

led=Pin(25, Pin.OUT)

while 1:   
  led.on()
  sleep_ms(500)
  led.off()
  sleep_ms(500)