print("Hello, Pi Pico!")
print("Ashutosh Sahoo, 1941012454")
print("This is Experiment - 1 and Objective - 4")
print("Objective : 5 To build our first external circuit and control it from the \
Raspberry Pi Pico i.e. ON for 3 seconds and OFF for 2 seconds.")
from machine import Pin
import utime
led = Pin(0,Pin.OUT)
while True:
led.value(1)
print("LED ON")
utime.sleep(3)
led.value(0)
print("LED OFF")
utime.sleep(2)