Skip to content

Commit

Permalink
Fix for Aircoookie#3514
Browse files Browse the repository at this point in the history
  • Loading branch information
blazoncek authored and Djelibeybi committed Jan 15, 2024
1 parent 8ec6790 commit 6fa1ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/FX.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ static float mapf(float x, float in_min, float in_max, float out_min, float out_
*/
uint16_t mode_static(void) {
SEGMENT.fill(SEGCOLOR(0));
return FRAMETIME_FIXED_SLOW; // WLEDMM to ensure smooth color changes from DMX (PR #73)
return strip.isOffRefreshRequired() ? FRAMETIME : FRAMETIME_FIXED_SLOW; // WLEDMM to ensure smooth color changes from DMX (PR #73)
}
static const char _data_FX_MODE_STATIC[] PROGMEM = "Solid";

Expand Down

0 comments on commit 6fa1ed7

Please sign in to comment.