from machine import Pin # Import Pin module
from time import sleep # Import sleep function
led = Pin(0, Pin.OUT) # Define LED on pin 25 as output
while True:
led.on() # Turn LED on
sleep(0.1) # Wait 1 second
led.off() # Turn LED off
sleep(0.1) # Wait 1 second