/*
There is nothing to run in this simulation.
Proper IC placement:
Place an IC straddling the "trench" in the middle of a breadboard.
Proper ESP32 placement:
(Left) A single breadboard is not enough for proper ESP32 placement.
(Right) You need to break out the voltage rail of one of the breadboards,
then connect the two breadboards together and place the ESP32 across both boards.
*/
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}