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)
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT