#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.init();
lcd.backlight();
}
void loop() {
lcd.setCursor(0,0);
lcd.print("RIVAL FAIRUZ");
lcd.scrollDisplayLeft();
delay(1000);
lcd.clear();
lcd.setCursor(10,1);
lcd.print("SAPUTRA");
lcd.scrollDisplayRight();
delay(1000);
lcd.clear();
}