#include <LiquidCrystal_I2C.h> // memanggil library lcd
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
// ini setup lcd
lcd.init();
lcd.backlight();
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
lcd.setCursor(2,0);
lcd.println("Barudak WELLLL");
lcd.setCursor(4,1);
lcd.println("HALO GAISS");
delay(40);
}