#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
// put your setup code here, to run once:
//Serial.begin(115200);
//Serial.println("Hello, ESP32!");
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
lcd.clear();
lcd.setCursor(5,0);
lcd.print("I2C LCD");
lcd.setCursor(5,1);
lcd.print("Interfacing");
lcd.setCursor(5,2);
lcd.print("Using");
lcd.setCursor(5,3);
lcd.print("NODEMCU");
delay(2000); // this speeds up the simulation
}