diff --git a/tasmota/xdrv_04_light.ino b/tasmota/xdrv_04_light.ino index 019fced67..d217b75c7 100644 --- a/tasmota/xdrv_04_light.ino +++ b/tasmota/xdrv_04_light.ino @@ -2351,7 +2351,7 @@ void CmndColorTemperature(void) } } if ((XdrvMailbox.payload >= CT_MIN) && (XdrvMailbox.payload <= CT_MAX)) { // https://developers.meethue.com/documentation/core-concepts - light_controller.changeCTB(XdrvMailbox.payload, light_state.getBri()); + light_controller.changeCTB(XdrvMailbox.payload, light_state.getBriCT()); LightPreparePower(2); } else { ResponseCmndNumber(ct);