probonopd / ESP8266HueEmulator

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

WS2811 are confused with R and G #114

Open udavst opened 6 years ago

udavst commented 6 years ago

WS2811 - GRB, in the project - RGB, where to change?


infoLight(green); - light RED
infoLight(red); - light GREEN
mariusmotea commented 6 years ago

NeoPixelBus<NeoGrbFeature.... replace Grb with Rgb, maybe there are more places were this need to be corrected, just perform search and replace.

udavst commented 6 years ago

Thank you! Fixed only one place, everything worked perfectly!