// 22.11.4562 - MUHAMMAD GUIDO AUGUSTA
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16,2);
int i = 1;
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0, 0);
lcd.print("Antrian ke : ");
lcd.setCursor(0, 1);
lcd.print(i);
delay(1000);
i += 2;
}