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