void setup()
{
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop()
{
Serial.println("Hello, ESP32!");
delay(1000); // this speeds up the simulation
Serial.println("Hello, World!");
delay(1000); // this speeds up the simulation
}