#include "Arduino.h"
#include <LiquidCrystal.h>
// Initialize the LCD with the correct pin mapping for 8-bit mode
LiquidCrystal lcd(13, 11, 3, 8, 9, 10, 7, 6, 5, 4);
void setup() {
// Start the LCD
lcd.begin(20, 4); // Initialize a 16x2 LCD
lcd.print("Hello Aman");
}
void loop() {
// Nothing to do here
}