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