I have an ESP8266 running FastLED animations but would like to send some data to Thingspeak simultaneously via the WiFiClient of the ESP8266. Unfortunately it causes short flickering of the animation. Is there any way to prevent that from happening?
Currently I am interrupting the loop function while using the client so FastLED.show() can’t get executed quickly enough which I think is the problem. However the ESP8266 crashes when I send data to Thingspeak by using the Ticker library so I don’t know a way around interrupting the loop function.