Fixed LPD8806 compilation (#971)

This commit is contained in:
cschwinne 2020-09-20 22:21:29 +02:00
parent 35b54e2f88
commit d70332f2a2
4 changed files with 8 additions and 2 deletions

View File

@ -2,6 +2,10 @@
### Development versions after the 0.10.2 release ### Development versions after the 0.10.2 release
#### Build 2009202
- Fixed LPD8806 compilation
#### Build 2009201 #### Build 2009201
- Added support for preset cycle toggling using CY=2 - Added support for preset cycle toggling using CY=2

View File

@ -165,7 +165,8 @@ lib_extra_dirs =
lib_compat_mode = strict lib_compat_mode = strict
lib_deps = lib_deps =
FastLED@3.3.2 FastLED@3.3.2
NeoPixelBus@2.5.7 #NeoPixelBus@2.5.7
https://github.com/Makuna/NeoPixelBus
ESPAsyncTCP@1.2.0 ESPAsyncTCP@1.2.0
ESPAsyncUDP ESPAsyncUDP
AsyncTCP@1.0.3 AsyncTCP@1.0.3

View File

@ -142,6 +142,7 @@
#define PIXELFEATURE4 DotStarLbgrFeature #define PIXELFEATURE4 DotStarLbgrFeature
#elif defined(USE_LPD8806) #elif defined(USE_LPD8806)
#define PIXELFEATURE3 Lpd8806GrbFeature #define PIXELFEATURE3 Lpd8806GrbFeature
#define PIXELFEATURE4 Lpd8806GrbFeature
#elif defined(USE_WS2801) #elif defined(USE_WS2801)
#define PIXELFEATURE3 NeoRbgFeature #define PIXELFEATURE3 NeoRbgFeature
#define PIXELFEATURE4 NeoRbgFeature #define PIXELFEATURE4 NeoRbgFeature

View File

@ -8,7 +8,7 @@
*/ */
// version code in format yymmddb (b = daily build) // 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). // 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).