Skip to content

Commit 78cb714

Browse files
authored
Merge pull request #1085 from marqdevx/marqdevx/stella-LED
Fix Stella LEDs
2 parents c63c71f + 5197542 commit 78cb714

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

variants/STELLA/variant.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ PinDescription g_APinDescription[] = {
105105
{ P0_3, NULL, NULL, NULL }, // A7
106106

107107
// 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
108+
{ P1_4, NULL, NULL, NULL }, // LED R
109+
{ P1_3, NULL, NULL, NULL }, // LED G
110+
{ P1_2, NULL, NULL, NULL }, // LED B
111+
{ P1_5, NULL, NULL, NULL }, // LED PWR
112112

113113
{ P0_19, NULL, NULL, NULL }, // INT APDS
114114

@@ -139,7 +139,7 @@ extern "C" {
139139
void initVariant() {
140140
// turn power LED on
141141
pinMode(LED_PWR, OUTPUT);
142-
digitalWrite(LED_PWR, HIGH);
142+
digitalWrite(LED_PWR, LOW);
143143

144144
// Errata Nano33BLE - I2C pullup is controlled by the SWO pin.
145145
// Configure the TRACEMUX to disable routing SWO signal to pin.

0 commit comments

Comments
 (0)