Correctly set warm white variables (#569)

This commit is contained in:
Jesse Hills
2019-05-30 19:33:47 +12:00
committed by Otto Winter
parent 7f507935b1
commit 31821e6309
3 changed files with 3 additions and 3 deletions
@@ -23,7 +23,7 @@ class RGBWWLightOutput : public light::LightOutput {
traits.set_supports_rgb_white_value(true);
traits.set_supports_color_temperature(true);
traits.set_min_mireds(this->cold_white_temperature_);
traits.set_min_mireds(this->warm_white_temperature_);
traits.set_max_mireds(this->warm_white_temperature_);
return traits;
}
void write_state(light::LightState *state) override {