from machine import Pin, I2C
from pico_i2c_lcd import I2cLcd
import time
#setup i2c
i2c = I2C(0,sda = Pin(0), scl = Pin(1), freq = 400000) #0 = channel, speed = 400 kHz
#lcd setup
lcd = I2cLcd(i2c, 0X27, 2,16)
#display text
lcd.clear()
lcd.putstr("hello")