#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C myLCD(0x27,16,2);
void setup() {
// put your setup code here, to run once:
myLCD.init();
myLCD.setBacklight(HIGH);
}
void loop() {
// put your main code here, to run repeatedly:
myLCD.setCursor(0,0);
myLCD.print("Ciao");
delay(1000);
myLCD.clear();
myLCD.setCursor(0,1);
myLCD.print("come va?");
delay(1000);
myLCD.clear();
}