from machine import Pin, I2C
import time
from pico_i2c_lcd import I2cLcd
i2c = I2C(0, scl=Pin(1), sda=Pin(0), freq=400000)
lcd = I2cLcd(i2c, 0x27, 2, 16)
while True:
lcd.clear()
lcd.move_to(0, 0)
lcd.putstr("Hola mundo")
time.sleep(2)
lcd.clear()
lcd.move_to(0, 0)
lcd.putstr("Industria 4.0")
time.sleep(2)