#include <LiquidCrystal.h> // initialize the library with the numbers of the interface pins
LiquidCrystal lcd(13, 11, 6, 5, 4, 3); /// REGISTER SELECT PIN 13,ENABLE PIN D11,D6, D5, D4, D3
void setup()
{
lcd.begin(16, 2);//set up the LCD's number of columns and rows:
}
void loop()
{
lcd.clear();
lcd.setCursor(2, 0);//set the cursor to column 0, line1
lcd.print("Hello World");//print name
delay(2000);//delay
//lcd.scrollDisplayLeft();//shifting data on LCD
}