print("\tProgram to make external LED")
print("\t\tby: Irfan175")
print("========================================================")
#import Libraries/modules
from machine import Pin
from utime import sleep
#Pin Declaration
Pink_LED = Pin(12, Pin.OUT)
#Parameter Declaration
#Main Program
while True:
Pink_LED.on()
sleep(0.5)
Pink_LED.off()
sleep(0.5)