#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
int tempo = 500;
void setup() {
lcd.init();
// put your setup code here, to run once:
}
void loop() {
lcd.setBacklight(HIGH); // put your main code here, to run repeatedly:
lcd.setCursor(1,0);
lcd.print("Billy ");
lcd.setCursor(1,1);
lcd.print(" Leo");
delay(tempo);
lcd.clear();
delay(tempo);
}