from machine import Pin, I2C
from pico_i2c_lcd import I2cLcd
import time
i2c = I2C(1, sda=Pin(2), scl=Pin(3), freq=400000)
lcd = I2cLcd(i2c, 0x27, 2, 16)
lcd.clear()
lcd.move_to(0,0)
lcd.putstr("TESZT")from machine import Pin, I2C
from pico_i2c_lcd import I2cLcd
import time
i2c = I2C(1, sda=Pin(2), scl=Pin(3), freq=400000)
lcd = I2cLcd(i2c, 0x27, 2, 16)
lcd.clear()
lcd.move_to(0,0)
lcd.putstr("TESZT")