#-------------------------------------------------------------
# LAB Name: Raspberry Pi Pico - MicroPython (Project Template)
# Author: Khaled Magdy
# For More Info Visit: www.DeepBlueMbedded.com
#-------------------------------------------------------------
from machine import Pin
from time import sleep
 
BUILTIN_LED = Pin("LED", Pin.OUT)
 
while True:
  BUILTIN_LED.value(not BUILTIN_LED.value())
  sleep(1)
$abcdeabcde151015202530354045505560fghijfghij