from machine import I2C, Pin
from time import sleep
from pico_i2c_lcd import I2cLcd
i2c = I2C(1, sda=Pin(6), scl=Pin(1), freq=400000)
I2C_ADDR = i2c.scan()[0]
lcd = I2cLcd(i2c, I2C_ADDR, 2, 9)
while True:
print(I2C_ADDR)
lcd.putstr("Jeswanth SKP")
sleep(2)
lcd.clear()
lcd.putstr("Rohan Reji")
sleep(2)
lcd.clear()