mirror of
https://github.com/esphome/esphome.git
synced 2025-02-21 20:38:16 +00:00
Fix color temperature persistence on CWWW lights (#2486)
This commit is contained in:
parent
039fbc677d
commit
85461a752a
@ -532,7 +532,8 @@ LightCall &LightCall::set_white_if_supported(float white) {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
LightCall &LightCall::set_color_temperature_if_supported(float color_temperature) {
|
LightCall &LightCall::set_color_temperature_if_supported(float color_temperature) {
|
||||||
if (this->get_active_color_mode_() & ColorCapability::COLOR_TEMPERATURE)
|
if (this->get_active_color_mode_() & ColorCapability::COLOR_TEMPERATURE ||
|
||||||
|
this->get_active_color_mode_() & ColorCapability::COLD_WARM_WHITE)
|
||||||
this->set_color_temperature(color_temperature);
|
this->set_color_temperature(color_temperature);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user