int PinkLed = 15;
void setup() {
// put your setup code here, to run once:
pinMode(15, OUTPUT);
Serial.begin(115200);
//Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(PinkLed, HIGH);
delay(1000);
digitalWrite(PinkLed, LOW);
delay(1000); // this speeds up the simulation
}