#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
int x=0;
int i=0;
void setup() {
lcd.init();
lcd.backlight();
}
void loop() {
lcd.clear();
if(i<=3){
for(int y=0;y<=10;y++){
lcd.clear();
lcd.setCursor(2, 0);
lcd.print("Count :");
lcd.setCursor(10,0);
lcd.print(x);
delay(500);
x++;
if(x==11){
x =0;
}
}
}
i++;
}///end loop