#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,1,2,3,4);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
// lcd.setCursor(1,1);
lcd.print("This is a long string, to right");
}
void loop() {
// put your main code here, to run repeatedly:
// lcd.setCursor(8,1);
// lcd.print(millis()/1000);
lcd.scrollDisplayLeft();
delay(500);
}