//Program Menampilkan Kalimat di Baris 1 dan 2
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); //set the LCD address to 0x27 for 16 chaRs and 2 line display
void setup()
{
lcd.init(); //initialize the LCD
//Print a massage to the LCD
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Selamat Datang");
lcd.setCursor(0,1);
lcd.print("ESP32 I2C LCD");
}
void loop()
{
}