Usermod transition change

pull/3511/head
Blaz Kristan 2023-11-28 10:46:04 +01:00
rodzic b88344a6c0
commit 8de2301c6b
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -298,7 +298,7 @@ class Animated_Staircase : public Usermod {
// shorten the strip transition time to be equal or shorter than segment delay
transitionDelay = segment_delay_ms;
strip.setTransition(segment_delay_ms/100);
strip.setTransition(segment_delay_ms);
strip.trigger();
} else {
if (togglePower && !on && offMode) toggleOnOff(); // toggle power on if off

Wyświetl plik

@ -91,6 +91,7 @@ class StairwayWipeUsermod : public Usermod {
void startWipe()
{
bri = briLast; //turn on
jsonTransitionOnce = true;
strip.setTransition(0); //no transition
effectCurrent = FX_MODE_COLOR_WIPE;
resetTimebase(); //make sure wipe starts from beginning
@ -105,6 +106,7 @@ class StairwayWipeUsermod : public Usermod {
void turnOff()
{
jsonTransitionOnce = true;
#ifdef STAIRCASE_WIPE_OFF
strip.setTransition(0); //turn off immediately after wipe completed
#else