From d70332f2a2a6155dc71187f7ea6c16d3d2474766 Mon Sep 17 00:00:00 2001 From: cschwinne Date: Sun, 20 Sep 2020 22:21:29 +0200 Subject: [PATCH] Fixed LPD8806 compilation (#971) --- CHANGELOG.md | 4 ++++ platformio.ini | 3 ++- wled00/NpbWrapper.h | 1 + wled00/wled.h | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 261f80a3..48406c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ### Development versions after the 0.10.2 release +#### Build 2009202 + +- Fixed LPD8806 compilation + #### Build 2009201 - Added support for preset cycle toggling using CY=2 diff --git a/platformio.ini b/platformio.ini index 06ec2e5f..2c6e2717 100644 --- a/platformio.ini +++ b/platformio.ini @@ -165,7 +165,8 @@ lib_extra_dirs = lib_compat_mode = strict lib_deps = FastLED@3.3.2 - NeoPixelBus@2.5.7 + #NeoPixelBus@2.5.7 + https://github.com/Makuna/NeoPixelBus ESPAsyncTCP@1.2.0 ESPAsyncUDP AsyncTCP@1.0.3 diff --git a/wled00/NpbWrapper.h b/wled00/NpbWrapper.h index ac72c89b..dbb867b6 100644 --- a/wled00/NpbWrapper.h +++ b/wled00/NpbWrapper.h @@ -142,6 +142,7 @@ #define PIXELFEATURE4 DotStarLbgrFeature #elif defined(USE_LPD8806) #define PIXELFEATURE3 Lpd8806GrbFeature + #define PIXELFEATURE4 Lpd8806GrbFeature #elif defined(USE_WS2801) #define PIXELFEATURE3 NeoRbgFeature #define PIXELFEATURE4 NeoRbgFeature diff --git a/wled00/wled.h b/wled00/wled.h index 2d22c0f1..f187220d 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2009201 +#define VERSION 2009202 // ESP8266-01 (blue) got too little storage space to work with all features of WLED. To use it, you must use ESP8266 Arduino Core v2.4.2 and the setting 512K(No SPIFFS).