//include the library code
#include<LiquidCrystal.h>
//initialize the library by assocating any needed LCD int
//with the arduino pin number it is connected to
const int rs=12,en=11,d4=5,d5=4,d6=3,d7=2;
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
void setup() {
// set upp lcd number of coloumns and rows
lcd.begin(16,2);
//print the message we want tot print in screen
lcd.print("harsha");
}
void loop() {
// set the cursor to coloumn 0,1
//(note:line 1 is secound row , since countin begins)
lcd.setCursor(0,1);
lcd.scrollDisplayLeft();
delay(400);}