Changing transitionDuration causes stutter

Hi,

I previous forum topic mentioned this happening with the brightness slider. When I set the durationTransition time for the sequencer I get some significant stutter in the animation. This happens when the sequencer is running and paused.

Anyone else seeing this or know what’s going on?

Thanks,

mauricio

This seems to happen only when “save”: true

Yes, especially if you are doing this programmatically. It has to write to the flash and that is expensive. Flash writes can potentially stall other things from happening normally (just an esp32 quirk).

You also don’t want to do that super fast in a loop since it will wear out the flash.

The ui waits for you to stop changing things before it commits it with save:true.

Thank you for the clarification!