#include <LiquidCrystal.h>
// Initialize the LCD with the correct pin connections
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup()
{
lcd.begin(16, 2);
lcd.print("Welcome to IoT");
lcd.setCursor(1, 1);
lcd.print("College of CSIT");
delay(3000); // Delay to display the first set of lines
lcd.clear(); // Clear screen before displaying next lines
// Second two lines
lcd.print("Bushra A. Alfoud");
lcd.setCursor(0, 1);
lcd.print("IT Dept - Jazan U");
}
void loop()
{
delay(1); // Adding a delay() here speeds up the simulation
}