Skip to content

Commit 7827c53

Browse files
authored
Changed Neopixel related static constants to #defines (espressif#7080)
1 parent f4d910e commit 7827c53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: variants/adafruit_qtpy_esp32/pins_arduino.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
1212
#define digitalPinHasPWM(p) (p < 34)
1313

14-
static const uint8_t PIN_NEOPIXEL = 5;
15-
static const uint8_t NEOPIXEL_POWER = 8;
14+
#define PIN_NEOPIXEL 5
15+
#define NEOPIXEL_POWER 8
1616

1717
static const uint8_t TX = 32;
1818
static const uint8_t RX = 7;

0 commit comments

Comments
 (0)