#include <LiquidCrystal.h>
const int RS=12, EN=11;
const int D4=7, D5=6, D6=5, D7=4;
LiquidCrystal lcd(RS, EN, D4, D5, D6, D7);
void setup() {
// put your setup code here, to run once:
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("Good Evening");
lcd.setCursor(0, 1);
delay(200);
lcd.print("Sir AryanG");
}
void loop() {
// put your main code here, to run repeatedly:
}