#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(2,0);
lcd.print("MOCHAMAD RENO FADILLAH ");
lcd.scrollDisplayRight();
lcd.setCursor(3,1);
lcd.print("ELEKTRONIKA INDUSTRI ");
delay(500);
}