#include <LiquidCrystal_I2C.h>
#define LCD_ADDR 0x27
#define LCD_COLUMNS 16
#define LCD_ROWS 2
LiquidCrystal_I2C lcd(LCD_ADDR, LCD_COLUMNS, LCD_ROWS);
void setup() {
lcd.init(); // Initialize the LCD after setting the backlight
lcd.backlight();
lcd.setCursor(5, 0);
lcd.print("Hello");
lcd.setCursor(0, 1);
lcd.print(" Pranav sai");
}
void loop() {
// Your main code here (if needed)
}