#include <LiquidCrystal.h>
int rs=13,e=12,d4=4,d5=5,d6=6,d7=7;
LiquidCrystal lcd(rs,e,d4,d5,d6,d7);
int mychar='a';
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.print("KiRaN");
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(2,1);
lcd.write(mychar);
delay(1000);
mychar++;
}