forked from markqvist/RNode_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 48
Closed
Description
Describe the Bug
Currently, following the Firmware Install Guide or the Handheld RNode Guide, you're giving the option of installing a NeoPixel LED on Pin 12.
At the moment, this is not enabled in the firmware from what I can tell.
In Boards.h, we define the features available for each board. NeoPixel support is enabled with HAS_NP and pin_np, and is properly enabled for the official RNode and HelTec T114.
Lines 685 to 695 in 7342116
| #elif BOARD_MODEL == BOARD_RNODE_NG_21 | |
| #define HAS_DISPLAY true | |
| #define DISPLAY OLED | |
| #define HAS_BLUETOOTH true | |
| #define HAS_CONSOLE true | |
| #define HAS_PMU true | |
| #define HAS_NP true | |
| #define HAS_SD false | |
| #define HAS_EEPROM true | |
| #define INTERFACE_COUNT 1 | |
| const int pin_np = 12; |
However it is missing for the LoRa32 boards:
Lines 407 to 414 in 7342116
| #elif BOARD_MODEL == BOARD_LORA32_V2_1 | |
| #define HAS_DISPLAY true | |
| #define DISPLAY OLED | |
| #define HAS_BLUETOOTH true | |
| #define HAS_PMU true | |
| #define HAS_CONSOLE true | |
| #define HAS_EEPROM true | |
| #define INTERFACE_COUNT 1 |
To Reproduce
Install the firmware and connect a NeoPixel to P12. It will not function.
Expected Behavior
The NeoPixel functions.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels