// SELECT THE Liquidcrystal IN Library manager
#include <LiquidCrystal.h>
LiquidCrystal MyLCD{13, 12, 14, 27, 26, 25};
void setup() {
// put your setup code here, to run once:
// Serial.begin(115200);
//Serial.println("Hello, ESP32!");
MyLCD.begin(16,2);
MyLCD.clear();
MyLCD.setCursor(0,0);
}
void loop() {
// put your main code here, to run repeatedly:
//MyLCD.println("HELLO WORLD HAPPY WORLD");
MyLCD.print("HELLO WORLD HAPPY WORLD");
delay(100); // this speeds up the simulation
MyLCD.clear();
}