#include <Wire.h>
#include <LiquidCrystal_I2C.h>
void setup() {
// put your setup code here, to run once:
lcd.init();
// Turn on the backlight
lcd.backlight();
// Print a message to the LCD
lcd.setCursor(2, 0);
lcd.print("Hello, World!");
lcd.setCursor(0, 1);
lcd.print("Naan Muthalvan");
}
void loop() {
}