1
0
mirror of https://github.com/esphome/esphome.git synced 2025-07-14 11:03:30 +01:00

Fix color temperature persistence on CWWW lights ()

This commit is contained in:
Jan Čermák
2021-10-11 23:56:35 +02:00
committed by GitHub
parent 039fbc677d
commit 85461a752a

@ -532,7 +532,8 @@ LightCall &LightCall::set_white_if_supported(float white) {
return *this;
}
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);
return *this;
}