#include <LiquidCrystal.h>
// Initialize the LCD with the numbers of the interface pins
LiquidCrystal lcd(2, 11, 12, 7, 6, 5);
void setup() {
lcd.begin(16,2);
lcd.setCursor(0, 0);
lcd.print("ARE - BASEARE - BASEARE - BASEARE - BASEARE - BASEARE - BASE");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print("BINUS");
lcd.display();
delay(500);
lcd.noDisplay();
lcd.scrollDisplayLeft();
}