#include
// Connections: RS=12, E=11, D4=5, D5=4, D6=3, D7=2
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2); // Initialize a 16×2 LCD
lcd.print("Welcome to"); // Print a welcome message
lcd.setCursor(0, 1); // Move cursor to column 0, line 1
lcd.print("Arduino LCD!");
}
void loop() {
// Nothing to do here for this basic example
}