#include <LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);
void setup() {
// put your setup code here, to run once:
lcd.begin(20, 4);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(2, 0);
lcd.print("Kelas XI TKL-A");
lcd.scrollDisplayLeft();
delay(100);
lcd.setCursor(2, 1);
lcd.print("SMKN 2 SURAKARTA");
}