import time,random,math
from machine import I2C,SoftI2C,Pin,RTC
from pico_i2c_lcd import I2cLcd
i2c=SoftI2C(sda=Pin(0),scl=Pin(1),freq=400000)
lcd_addr=i2c.scan()[0]
print(lcd_addr)
lcd=I2cLcd(i2c,lcd_addr,2,16)#https://github.com/T-622/RPI-PICO-I2C-LCD
lcd.clear()
lcd.move_to(3,1)
lcd.putstr("Hello")
time.sleep(2)