const int buttonPin = 18;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
pinMode(buttonPin, INPUT);
}
void loop() {
if(buttonPin == HIGH) {}
delay(10); // this speeds up the simulation
}