#include <LiquidCrystal_I2C.h>
#define LCD_ARRD 0X27
#define LCD_COLUMNS 16
#define LCD_ROWS 2
LiquidCrystal_I2C lcd(LCD_ARRD, LCD_COLUMNS, LCD_ROWS );
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.init();
lcd.backlight();
lcd.setCursor(4,0);
lcd.print("Hello");
lcd.setCursor(4,2);
lcd.print("SENTHIL KUMAR.P");
}
void loop() {
// put your main code here, to run repeatedly:
}