mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-05 20:40:25 -08:00
Do not include neopixel
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
#include "LedInterface.h"
|
#include "LedInterface.h"
|
||||||
|
|
||||||
|
|
||||||
LedInterface::LedInterface() {
|
LedInterface::LedInterface() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,9 @@
|
|||||||
#include "configs.h"
|
#include "configs.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <Adafruit_NeoPixel.h>
|
#ifdef HAS_NEOPIXEL_LED
|
||||||
|
#include <Adafruit_NeoPixel.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define Pixels 1
|
#define Pixels 1
|
||||||
|
|
||||||
@@ -17,7 +19,10 @@
|
|||||||
#define MODE_CUSTOM 4
|
#define MODE_CUSTOM 4
|
||||||
|
|
||||||
extern Settings settings_obj;
|
extern Settings settings_obj;
|
||||||
extern Adafruit_NeoPixel strip;
|
|
||||||
|
#ifdef HAS_NEOPIXEL_LED
|
||||||
|
extern Adafruit_NeoPixel strip;
|
||||||
|
#endif
|
||||||
|
|
||||||
class LedInterface {
|
class LedInterface {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user