Hi,
I have recently bought a xiao-esp32s3 but have encountered a problem. When uploading the Arduino Blink example to the Xiao esp32s3, the output is inverted.
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);  // turn the LED on (HIGH is the voltage level)
  delay(1000);                      // wait for a second
  digitalWrite(LED_BUILTIN, LOW);   // turn the LED off by making the voltage LOW
  delay(1000);                      // wait for a second
}
When the LED_BUILTIN is set to LOW the LED_BUILTIN is on, I noticed this when using the LED_BUILTIN to indicate a process was active. When the following code is flashed to the Xiao esp32s3 the LED_BUILTIN will be on as mention earlier, and off if HIGH is written instead of LOW.
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, LOW);   // turn the LED off by making the voltage LOW
}
Have you also experienced this, or do you know how make the Xiao esp32s3 work as expected?
Please let me know!