#include <LiquidCrystal.h>
LiquidCrystal lcd(7,6,5,4,3,2);
void setup() {
lcd.begin(20,4);
// put your setup code here, to run once:
}
void loop() {
lcd.setCursor(2,0);// put your main code here, to run repeatedly:
lcd.print("KELAS XII TKL A");
lcd.scrollDisplayRight();
delay(1000);
}