#include <LiquidCrystal_I2C.h>
#define addr 0x27
#define colum 16
#define row 2
LiquidCrystal_I2C lcd(addr,colum,row);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.init();
lcd.backlight();
lcd.setCursor(5,0);
lcd.print("WELCOME");
lcd.setCursor(0,1);
lcd.print(" AHAD");
}
void loop() {
// put your main code here, to run repeatedly:
}