from machine import Pin, SoftI2C
from lcd_api import Lcd_Api
from i2c_led import I2cLcd
from time import sleep
I2C_ADOR = 0x27
totalRows = 2
totalColumnas = 16
i2c = SofI2C(scl=Pin(22),sda=Pin(21), freq=(10000))
lcd = I2cLcd(i2c, I2C_ADDR, totalRows, totalColumns)
while True:
lcd.putstr("politecnico")