From 364bf30d2e32a8e099bdd5d785e403083b0757c5 Mon Sep 17 00:00:00 2001 From: Michael D Roach Date: Sun, 4 Aug 2024 22:48:22 -0400 Subject: [PATCH] Update XIAO_ESP32C3_Getting_Started.md Slight change to the wording and added the LED_BUILTIN definition. Not everybody is following the diagram. --- .../SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_Getting_Started.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_Getting_Started.md b/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_Getting_Started.md index 423039b2fe3f..2c46673f76a1 100644 --- a/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_Getting_Started.md +++ b/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_Getting_Started.md @@ -145,8 +145,10 @@ Navigate to **Tools > Port** and select the serial port name of the connected XI - **Step 1.** Copy the below code to Arduino IDE ```cpp -// define led according to pin diagram +// define led according to pin diagram in article int led = D10; +// Blink the onboard charge led +// int led = LED_BUILTIN; void setup() { // initialize digital pin led as an output