#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // I2C address 0x27, 16 column and 2 rows
void setup() {
lcd.init(); // inicializa o lcd
lcd.backlight();//liga a luz de fundo
}
void loop() {
lcd.clear(); // limpar display
lcd.setCursor(2, 0); // cursor NA COLUNA 2 LIMHA 0 (0, 0)
lcd.print("Bem vindos !! "); // print message at (0, 0)
lcd.setCursor(4, 1); // move cursor to (2, 1)
delay(2000); // display the above for two seconds
lcd.print("MARINELLI"); // print message at (0, 1)
delay(2000); // display the above for two seconds
}