#include <LiquidCrystal.h>
LiquidCrystal lcd(26, 23, 19, 18, 5,4 ); // Make sure the pin connections match your wiring
void setup() {
lcd.begin(16, 2);
lcd.print("Lovely Professional University");
}
void loop() {
lcd.setCursor(0,1);
lcd.autoscroll();
delay(500);
//lcd.print("Hmmmmmm....");
}