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