I am using FastLED + IRremoteESP8266 on ESP8266 (wifi is enabled and active) - testing with both WeMos D1 mini and NodeMCU ESP-12, using various WS2812 LEDs.
-
Default FastLED settings: remote control functions work great but I get lots of random extraneous blinking.
-
Add “#define FASTLED_ALLOW_INTERRUPTS 0” and blinking goes away, but so does remote control usage.
-
With interrupts allowed, tried changing FASTLED_INTERRUPT_RETRY_COUNT to 3 or 4 but extra blinking just as bad.
-
BUT, if I disable retries via “#define FASTLED_INTERRUPT_RETRY_COUNT 0”, extra blinking clears up and remote functionality is good!!
Attached video: first 10 seconds is default retry count = 2 with blinking. Next 10 seconds is retry count = 0 with no blinking.
I’m glad for good results, but this was not what I expected - just wonder if I’m missing some other issue that turning off retries might be allowing?