// Learn about the ESP32 WiFi simulation in
// https://docs.wokwi.com/guides/esp32-wifi
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16,2);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
lcd.setCursor(2, 1);
lcd.print("Kamote mo!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}