from machine import Pin
from time import sleep
led0=Pin(23,Pin.OUT)
while True:
  led0.on()
  sleep(1)
  led0.off()
  sleep(1)