I am still attempting to get the FastLED matrix code running properly on a Wemos D1 chip. I used the #define FASTLED_ALLOW_INTERRUPTS 0 tick to fix the flickering towards the end of the strip. However, I’ve now got some jitter that isn’t present when I run the code on an Arduino Mega. Any idea what could be causing this?
I’m not an ESP8266 expert, but my understanding is that doing any timing critical code on it is doomed for failure if you just use the regular arduino methods since all of it can be interrupted for the chip to run its more time critical things like wifi and other watchdogs.
There is however a library that uses I2S to do neopixels, and that one is 100% correct in timing since it uses DMA.
See http://marc.merlins.org/perso/arduino/post_2017-04-03_Arduino-328P-Uno-Teensy3_1-ESP8266-ESP32-IR-and-Neopixels.html#ESP
@Mike_Clifford even if you are not using wifi, Wifi is still taking interrupts and stopping your arduino thread like I mentioned. Turning wifi off should help.