probonopd / ESP8266HueEmulator

Emulate a Philips Hue bridge running on an ESP8266 using the Arduino IDE.
MIT License
411 stars 93 forks source link

NeoPixelBus library change causes compiler error #120

Open Makuna opened 5 years ago

Makuna commented 5 years ago

The method NeoEsp8266Uart800KbpsMethod is used when constructing the NeoPixelBus is no longer a valid method due to redesigns in NeoPixelBus.

NeoEsp8266Uart1Ws2812xMethod is the best direct replacement. The code here needs to be updated.

Solmath commented 5 years ago

Just created a PR #121 addressing this issue. Because I noticed this issue to late, I used NeoEsp8266Uart1800KbpsMethod as suggested here: https://github.com/Aircoookie/WLED/issues/95

Is this a problem?

Makuna commented 5 years ago

that should work just as well, I kept the 800/400 methods for compatibility, but I want to remove them some time far in the future.