#include <LiquidCrystal.h>
char message[]={"!!!!!!! RAJA WEDS RANI !!!!!!"};
LiquidCrystal lcd(19,23,18,17,16,15);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
// this speeds up the simulation
lcd.setCursor(0,0);
for(int i=0; i<=30; i++){
lcd.print(message[i]);
delay(200);
if(i>16){
lcd.autoscroll();
}
}
lcd.setCursor(0,1);
lcd.print("18/08/2023");
}