#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // Adjust pin numbers to match your wiring
void setup() {
// Start the LCD
lcd.begin(16, 2); // 16 columns and 2 rows
// Print a message to the LCD.
lcd.print("Hello, World!");
}
void loop() {
// Nothing to do here for this basic example
}