#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4); // Change 0x27 to your LCD I2C address
void setup() {
lcd.begin(16, 2); // Change 16, 2 to match your LCD size (20, 4 in this case)
lcd.backlight();
// Display the information
lcd.setCursor(0, 0);
lcd.print("Name: Sannidhya");
lcd.setCursor(0, 1);
lcd.print("Age: 14");
lcd.setCursor(0, 2);
lcd.print("Wassup!");
}
void loop() {
// Your main loop code here
}