#include <LiquidCrystal_I2C.h>
int col =16;
int row =2;
LiquidCrystal_I2C lcd(0x27, col, row);
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(1,0);
lcd.print("Minal Aidzin Walfa Idzin");
lcd.setCursor(0,1);
lcd.print("Mohon Maaf Lahir dan Batin");
lcd.scrollDisplayLeft();
delay(100);
}