#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <string.h>
LiquidCrystal_I2C lcd(0x27,16,2);
int x=1;
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(2,0);
lcd.print("Antrian ke : ");
lcd.setCursor(2,1);
lcd.print(x);
x=x+2;
delay(500);
lcd.clear();
}