#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
lcd.begin(16, 2); // 16x2
lcd.print("practice number 2");
}
void loop() {
lcd.scrollDisplayRight();
delay(200);
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
lcd.begin(16, 2); // 16x2
lcd.print("practice number 2");
}
void loop() {
lcd.scrollDisplayRight();
delay(200);
}