#include <Wire.h> // include library
#include<LiquidCrystal_I2C.h>
//Set the LCD addres to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
lcd.init();
// initialie the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(0,0); //kolom dan baris
lcd.print("RADITIA AJA FF");
}
void loop()
{for(int i=0;i<16;i++){
lcd.scrollDisplayLeft();
delay(200);
}
}