#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // Change the address (0x27) if your I2C module has a different address.
void setup() {
lcd.init(); // Initialize the LCD
lcd.backlight(); // Turn on the backlight
lcd.setCursor(0, 0); // Set the cursor to the first row
lcd.print("Lavanya"); // Display text on the first line
lcd.setCursor(0, 1); // Set the cursor to the second row
lcd.print("Mahima"); // Display text on the second line
}
void loop() {
// Your main code goes here
}