mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Fix CWWW/RGBWW lights (#562)
This commit is contained in:
		| @@ -19,6 +19,8 @@ class CWWWLightOutput : public light::LightOutput { | ||||
|     traits.set_supports_rgb(false); | ||||
|     traits.set_supports_rgb_white_value(false); | ||||
|     traits.set_supports_color_temperature(true); | ||||
|     traits.set_min_mireds(this->cold_white_temperature_); | ||||
|     traits.set_min_mireds(this->warm_white_temperature_); | ||||
|     return traits; | ||||
|   } | ||||
|   void write_state(light::LightState *state) override { | ||||
|   | ||||
| @@ -22,6 +22,8 @@ class RGBWWLightOutput : public light::LightOutput { | ||||
|     traits.set_supports_rgb(true); | ||||
|     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_); | ||||
|     return traits; | ||||
|   } | ||||
|   void write_state(light::LightState *state) override { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user