#include <LiquidCrystal.h>
LiquidCrystal lcd(19, 23, 18, 17, 16, 15);
void setup() {
// Set up the LCD with 16 columns and 2 rows
lcd.begin(16, 2);
// Print "Keshav" on the first line (row 0) and "Smartest person" on the second line (row 1)
lcd.setCursor(0, 0); // Set the cursor to the first row (row 0), first column (column 0)
lcd.print("Keshav");
lcd.setCursor(0, 1); // Set the cursor to the second row (row 1), first column (column 0)
lcd.print("Smartest person");
}
void loop() {
// Your loop code here
// You can update the LCD display within the loop if needed
}