#include <LiquidCrystal.h>
LiquidCrystal lcd = LiquidCrystal (2, 3,
4, 5, 6, 7); //Create an LCD object. Parameters: (RS, E, D4, D5, D6, D7):
void setup()
{
lcd.begin(16, 2); //Specify the LCD's number of columns and rows. Change to (20, 4) for a 20x4 LCD
}
void loop()
{
lcd.setCursor(0,0);
lcd.print("Welcome 2024");
delay(1000);
lcd.setCursor(0,1);
lcd.print("- 10 Einstein");
delay(1000);
lcd.clear();
}