#include <LiquidCrystal.h>
LiquidCrystal lcd(13, 12, 11, 10, 9, 46);
void setup() {
Serial.begin(115200);
lcd.begin(16, 2);
Serial.println("Hello, ESP32!");
lcd.print("Hello world");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}