from machine import SoftI2C, Pin
from i2c_lcd import I2cLcd
i2c = SoftI2C(scl = Pin(22), sda = Pin(21), freq = 400000)
lcd = I2cLcd(i2c, 0x27, 2, 16)
lcd.backlight_on()
lcd.clear()
while True:
lcd.move_to(4,0)
lcd.putstr("ESP32")
lcd.move_to(0,1)
lcd.putstr("Micropython")