We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c63c71f + 5197542 commit 78cb714Copy full SHA for 78cb714
variants/STELLA/variant.cpp
@@ -105,10 +105,10 @@ PinDescription g_APinDescription[] = {
105
{ P0_3, NULL, NULL, NULL }, // A7
106
107
// LEDs
108
- { P0_24, NULL, NULL, NULL }, // LED R
109
- { P0_16, NULL, NULL, NULL }, // LED G
110
- { P0_6, NULL, NULL, NULL }, // LED B
111
- { P1_9, NULL, NULL, NULL }, // LED PWR
+ { P1_4, NULL, NULL, NULL }, // LED R
+ { P1_3, NULL, NULL, NULL }, // LED G
+ { P1_2, NULL, NULL, NULL }, // LED B
+ { P1_5, NULL, NULL, NULL }, // LED PWR
112
113
{ P0_19, NULL, NULL, NULL }, // INT APDS
114
@@ -139,7 +139,7 @@ extern "C" {
139
void initVariant() {
140
// turn power LED on
141
pinMode(LED_PWR, OUTPUT);
142
- digitalWrite(LED_PWR, HIGH);
+ digitalWrite(LED_PWR, LOW);
143
144
// Errata Nano33BLE - I2C pullup is controlled by the SWO pin.
145
// Configure the TRACEMUX to disable routing SWO signal to pin.
0 commit comments