#include <LiquidCrystal.h>
// Initialize the library with the numbers of the interface pins
const int rs = 7, en = 8, d4 = 9, d5 = 10, d6 = 11, d7 = 12;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
lcd.begin(5, 2); // Set up the LCD's number of columns and rows
lcd.print("Saurabh gamer"); // Print "Hello" on the LCD
}
void loop() {
// No need to repeat anything in the loop for this simple example
}