from machine import Pin, SoftI2C
from i2c_lcd import I2cLcd
from utime import sleep
i2c = SoftI2C(sda=Pin(21), scl=Pin(22))
lcd = I2cLcd(i2c, 0x27, 2, 16)
lcd.putstr("Ulitsa, 21")
from machine import Pin, SoftI2C
from i2c_lcd import I2cLcd
from utime import sleep
i2c = SoftI2C(sda=Pin(21), scl=Pin(22))
lcd = I2cLcd(i2c, 0x27, 2, 16)
lcd.putstr("Ulitsa, 21")