#include <LiquidCrystal.h>
const int rs =13,en=12,d4=7,d5=6,d6=5,d7=4;
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
int data_Counter=0;
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.print("INDRI");
lcd.setCursor(0,1);
lcd.print("ANINDIA");
lcd.setCursor(7,1);
lcd.print("y");
}
void loop() {
// put your main code here, to run repeatedly:
data_Counter++;
delay(500);
lcd.setCursor(12,1);
lcd.print(data_Counter);
}