#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C pantallita(0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
pantallita.init();
pantallita.backlight();
pantallita.setCursor(1,0);
pantallita.print("Hola mundo UNI");
pantallita.setCursor(0,1);
pantallita.print("Maestria IA 2025");
}
void loop() {
// put your main code here, to run repeatedly:
}