Add Xiao RP2040 and RP2350 variants (#10109)

This commit is contained in:
Chloe Bethel
2026-05-31 12:51:15 -04:00
committed by GitHub
co-authored by GitHub
parent 8a1d6d9285
commit 64e35908c9
5 changed files with 94 additions and 0 deletions
@@ -0,0 +1,10 @@
#include <Arduino.h>
// Turn off the green and blue LEDs, which are on by default.
void initVariant()
{
pinMode(PIN_LED_G, OUTPUT);
pinMode(PIN_LED_B, OUTPUT);
digitalWrite(PIN_LED_G, HIGH);
digitalWrite(PIN_LED_B, HIGH);
}