print("Hello,Pi Pico!")
print("This is Experiment-1 and Objective-4")
print("Familiarization with Online Simulator “WOKWI” and getting started with onboard LED blinking of Raspberry Pi Pico")
from machine import Pin
import utime
ledPin=Pin(25,Pin.OUT)
while True:
ledPin.value(1)
print("LED ON")
utime.sleep(1)
ledPin.value(0)
print("LED OFF")
utime.sleep(1)