#include<LiquidCrystal.h>
int rs=32,en=33,d4=25,d5=26,d6=27,d7=17;
LiquidCrystal lcd(rs,en,d4,d5,d6,d7);
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
lcd.begin(16,2);
}
void loop() {
lcd.setCursor(0,0);
lcd.print("Hello");
delay(1000);
lcd.clear();
delay(10); // this speeds up the simulation
}