From ef9a85481172c92b7f5a977a22d84a1aa1033443 Mon Sep 17 00:00:00 2001 From: Erik Date: Thu, 28 Jan 2021 19:56:45 +0100 Subject: [PATCH] Respond to fade2 and speed2 --- tasmota/xdrv_04_light.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasmota/xdrv_04_light.ino b/tasmota/xdrv_04_light.ino index 5641608cc..ae1f64b64 100644 --- a/tasmota/xdrv_04_light.ino +++ b/tasmota/xdrv_04_light.ino @@ -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; }