kitesurfer1404 / WS2812FX

WS2812 FX Library for Arduino and ESP8266
MIT License
1.58k stars 343 forks source link

Will This Work With RGBW NeoPixels Too? #318

Closed 1CM69 closed 1 year ago

1CM69 commented 1 year ago

Been using the standard NeoPixels lib with LEDs set as NEO_WGRB but stumbled across your code which looks really interesting.

Will yours work with the RGBW LEDs too?

moose4lord commented 1 year ago

Yes, WS12812FX is compatible with RGBW LEDs. When you set a color parameter, set the most-significant byte to the white LED intensity, just like the Adafruit_Neopixel library.

1CM69 commented 1 year ago

Yes, WS12812FX is compatible with RGBW LEDs. When you set a color parameter, set the most-significant byte to the white LED intensity, just like the Adafruit_Neopixel library.

Great, thanks.