#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// initialize the LCD
lcd.begin(16, 2);
// Turn on the blacklight and print a message.
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(1, 0);
lcd.print("Hello, Word!");
lcd.setCursor(1, 1);
lcd.print("Fizar Maulana");
lcd.scrollDisplayLeft();
delay(500);
}