#include<Wire.h>
#include<LiquidCrystal_I2C.h>

//setUp lcd address for 16 characters and 2 display
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
 //initialize lcd
 lcd.init();

 //Turn on blacklight and a print message
 lcd.backlight();
 lcd.println("  Hello World  ");

}

void loop() {
  // put your main code here, to run repeatedly:

}