print('kavi')
from machine import Pin
import time
from time import sleep
# Define the pin that the LED is connected to
led_pin = 2
# Create a new Pin object for the LED
led = Pin(led_pin, Pin.OUT)
# Turn on the LED
led.on()
'''
# Wait for 1 second
time.sleep(1)
# Turn off the LED
led.off()
# Repeat the loop forever
while True:
led.on()
time.sleep(1)
led.off()
time.sleep(1)
'''