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