#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 4, d5 =5, d6 = 6, d7 = 7;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("lovely professional university");
}
void loop() {
// Turn off the display:
lcd.setCursor(16, 1);
for(int thisChar= 0; thisChar < 0; thisChar++){
// print the number of seconds since reset:
lcd.print(millis() / 1000);
delay(500);
lcd.autoscroll();
}
lcd.noAutoscroll();
lcd.clear();
}