From 256450272a531ba351369f23b0bbe7ed2c354879 Mon Sep 17 00:00:00 2001 From: 0x62 Date: Thu, 27 Mar 2025 22:03:12 +0000 Subject: [PATCH] Add NeoPixel support for LILYGO LoRa32, closes #70 --- Boards.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Boards.h b/Boards.h index a6e9e61..2b25e46 100644 --- a/Boards.h +++ b/Boards.h @@ -409,9 +409,12 @@ #define DISPLAY OLED #define HAS_BLUETOOTH true #define HAS_PMU true + #define HAS_NP true #define HAS_CONSOLE true #define HAS_EEPROM true #define INTERFACE_COUNT 1 + + const int pin_np = 12; const uint8_t interfaces[INTERFACE_COUNT] = {SX1276}; #if HAS_TCXO == true -- 2.25.1