#include <LiquidCrystal_I2C.h> //external library used to
//display the output on the connected LCD Screen.
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27
// for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight(); //it turns ON the LCD background light
Serial.begin(9600); //used to transfer the data from one device to the other
lcd.begin(16, 2); // initializes the LCD screen
lcd.setCursor(0,0); //starting point of cursor to display text
lcd.print("Hello, Prachi");
delay(2000);
}
void loop()
{
}