Keith Lord

Results 82 comments of Keith Lord

Just FYI, still broke in v2.4.2. The workaround still works, but the line to patch is 198, not 193, now.

They've moved things around a bit in 2.5-beta. It looks like line 202 is the line to patch now. From this: ```c++ if (contentLength) { ``` to this: ```c++ if...

I just tried this using the ws2812fx_alexa demo app in the WS2812FX library. My Echo Dot has the latest firmware (628568520), but it's still got the Content-type bug. :( ```Content-Type:...

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.

I tried it and it seems to work fine. Attached is my test sketch. [ws2812fx_overlay_with_trigger.zip](https://github.com/kitesurfer1404/WS2812FX/files/9527624/ws2812fx_overlay_with_trigger.zip)

I modified the ws2812fx_overlay example sketch to perform the masking function. It uses the same idea of using a virtual strip (to run the animation) and a physical strip (to...

You've touched on a confusing aspect of the library. The speed code was refactored a while back to change the "speed" parameter's behavior to be more of a delay-between-animation-frames. Setting...

The ESP32 is notoriously picky when it comes to WS2812 LEDs. You'd think that with two cores, one for your sketch and one to manage WiFi, it would be more...

I'm going to leave this issue open for a while, since this issue regarding the ESP32 comes up pretty regularly.

I'd be interested in seeing your code, if you don't mind posting it.