// Learn about the ESP32 WiFi simulation in
// https://docs.wokwi.com/guides/esp32-wifi
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD = LiquidCrystal_I2C(0x27, 16, 2);
void setup() {
Serial.begin(115200);
LCD.init();
LCD.backlight();
}
void loop() {
LCD.clear();
LCD.setCursor(0, 0);
LCD.println("bang");
delay(500);
LCD.clear();
LCD.setCursor(0, 1);
LCD.println("fauzi dodol");
delay(250);
}