#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C Prueba(0x27, 20, 4);
void setup()
{
Prueba.init();
Prueba.backlight();
Prueba.setCursor(0, 0);
Prueba.print(" Hola Mundo :)!");
Prueba.setCursor(0, 1);
Prueba.print(" I2C LCD 20x4");
}
void loop()
{
}