void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, World!");
// Setup GPIO for output
pinMode(23, OUTPUT); // Red LED
}
void loop() {
// put your main code here, to run repeatedly:
delay(250); // Wait but do nothing useful
Serial.println(" I am ESP32!");
digitalWrite(23, HIGH);
delay(250); // Wait but do nothing useful
digitalWrite(23, LOW);
}