#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.init();
}
void loop()
{
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Hello World!");
lcd.setCursor(0,1) ;
lcd.print("Funda2");
delay(2000);
lcd.noBacklight();
delay(3000);
lcd.clear();
lcd.print("Buu ENG");
lcd.blink();
delay(3000);
lcd.noBlink();
delay(3000);
lcd.clear();
}