import machine
from machine import Pin, SoftI2C
from lcd_api import LcdApi
from i2c_lcd import I2cLcd
import time
from time import sleep
I2C_ADDR = 0x27
totalrows = 2
totalcoloums = 16
i2c = SoftI2C(scl=Pin(22),sda=Pin(21), freq=10000)
lcd = I2cLcd(i2c, I2C_ADDR, totalrows, totalcoloums)
while True:
lcd.putstr("Hello")
sleep(2)
lcd.clear()
lcd.move_to(3,1)