#include <LiquidCrystal.h>
LiquidCrystal aman(19,18,5,4,2,15);
void setup() {
// put your setup code here, to run once:
aman.begin(16,2);
}
void loop() {
aman.setCursor(0,0);
aman.print("aman");
aman.display();
delay(1000);
aman.noDisplay();
aman.scrollDisplayLeft();
//put your main code here, to run repeatedly:
//this speeds up the simulation
aman.setCursor(10,0);
aman.print("her");
delay(1000);
aman.setCursor(5,1);
aman.print(" LOVE !");
delay(1000);
aman.print("Gupta !");
}