#include <LiquidCrystal.h>
LiquidCrystal LCD(3,4,8,9,10,11);
void setup()
{
LCD.begin(16,2);
}
void loop()
{
LCD.setCursor(0,0);
LCD.print("Hello Students");
LCD.setCursor(0,1);
LCD.print("Study well");
LCD.scrollDisplayRight();
delay(200);
}