/**
* ESP32 Blink example
*
* This code is identical for Arduino Uno, Leonardo,
* Huzzah32, ESP32-S3 Feather, and more! That's the beauty of Arduino!
*
* See: https://makeabilitylab.github.io/physcomp/esp32/led-blink
*/
const int LED_OUTPUT_PIN = 13; // change to whatever GPIO pin you used
void setup() {
pinMode(LED_OUTPUT_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_OUTPUT_PIN, HIGH);
delay(1000);
digitalWrite(LED_OUTPUT_PIN, LOW);
delay(1000);
}Loading
esp32-s3-devkitc-1
esp32-s3-devkitc-1