#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4); // 0x27 = I2C Device Address
void setup()
{
lcd.init();
lcd.setBacklight(HIGH);
}
void loop()
{
lcd.setCursor(0,0);
lcd.print("Nama: Ahmad Rosyidi");
delay(500);
lcd.setCursor(0,1);
lcd.print("Asal: Batam ");
lcd.setCursor(0,2);
lcd.print("Profesi: Engineer");
lcd.print(" ");
// lcd.setCursor(0,1);
// lcd.print(" ");
// lcd.setCursor(0,2);
// lcd.print(" ");
// delay(800);
// lcd.setCursor(0,0);
// lcd.print("Nama: Ahmad Lee ");
// lcd.setCursor(0,1);
// lcd.print("Asal: Hongkong");
// lcd.setCursor(0,2);
// lcd.print("Profesi: RND ");
}