#include <LiquidCrystal_I2C.h> //liquid crystal with I2C library
LiquidCrystal_I2C lcd(0x27, 16, 2); // set the LCD address to 0x27 for a 16 chars and 2 line display
int batas = 200;
void setup()
{
lcd.init(); // initialize the lcd
lcd.backlight(); //Turn on backlight
lcd.print("Antrian, ke :");
}
void loop()
{
for (int i=0; i < batas; i++)
{
if ((i %2) != 0)
{
lcd.setCursor(0, 1);
lcd.print(i);
delay(1000);
}
}
}