#include<LiquidCrystal_I2C.h>;
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init(); // run the LCD secreen
lcd.backlight(); // light the secreen
}
void loop() {
lcd.setCursor(0,0); // get the addressing of cursor on the secreen
lcd.print(("LCD Test"));
delay(2000); // time
lcd.clear(); //Clear screen contents for second opjects e.g
for(int a = 0; a <= 10; a++)
{ //print 0 to 10 except 5
if (a == 5)
continue;
delay(1000);
lcd.setCursor(0,0);
lcd.print(a);
}
}