Merge pull request #10736 from emontnemery/once_off_speed_fade_fix

Respond to fade2 and speed2
This commit is contained in:
Theo Arends 2021-01-29 10:30:03 +01:00 committed by GitHub
commit aa8a23e1d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2844,6 +2844,7 @@ void CmndFade(void)
Light.fade_once_value = XdrvMailbox.payload;
break;
}
ResponseCmndStateText(Light.fade_once_value);
return;
}
@ -2876,6 +2877,7 @@ void CmndSpeed(void)
Light.speed_once_enabled = true;
Light.speed_once_value = XdrvMailbox.payload;
}
ResponseCmndNumber(Light.speed_once_value);
return;
}