2018-08-24 22:44:01 +02:00
Cold White + Warm White Light
=============================
2018-11-14 22:12:27 +01:00
.. seo ::
:description: Instructions for setting up Cold White + Warm White lights.
2018-11-19 18:32:16 +01:00
:image: brightness-medium.png
2018-11-14 22:12:27 +01:00
2021-08-17 02:37:22 +02:00
The `` cwww `` light platform creates a cold white + warm white light from 2
:ref: `float output components <output>` (one for each channel). The two channels
can be controlled individually or together.
2018-08-24 22:44:01 +02:00
2018-11-19 18:32:16 +01:00
.. code-block :: yaml
2018-08-24 22:44:01 +02:00
# Example configuration entry
light:
2018-11-28 00:03:27 +01:00
- platform: cwww
2018-08-24 22:44:01 +02:00
name: "Livingroom Lights"
cold_white: output_component1
warm_white: output_component2
2019-03-17 15:56:16 +01:00
cold_white_color_temperature: 6536 K
warm_white_color_temperature: 2000 K
2020-04-10 17:47:45 +02:00
constant_brightness: true
2018-08-24 22:44:01 +02:00
2021-08-17 02:37:22 +02:00
.. _cwww_mixing:
Mixing
------
The two channels of this light can be controlled individually by using the `` cold_white `` and `` warm_white `` options of
the :ref: `light control actions <light-turn_on_action>` .
If the color temperature of both lights is supplied, it is also possible to control the the two channels together by
setting a color temperature, using the `` white `` (interpreted as brightness) and `` color_temperature `` options. This
calculation assumes that both lights have the same illuminance, which might not always be accurate.
2018-08-24 22:44:01 +02:00
Configuration variables:
------------------------
- **name** (**Required** , string): The name of the light.
- **cold_white** (**Required** , :ref: `config-id` ): The id of the float :ref: `output` to use for the cold white channel.
- **warm_white** (**Required** , :ref: `config-id` ): The id of the float :ref: `output` to use for the warm white channel.
2021-08-17 02:37:22 +02:00
- **cold_white_color_temperature** (*Optional* , float): The color temperature (in `mireds <https://en.wikipedia.org/wiki/Mired> `__ or Kelvin)
2021-08-18 01:07:43 +02:00
of the cold white channel. Note that this option is required to control the mixing from Home Assistant.
2021-08-17 02:37:22 +02:00
- **warm_white_color_temperature** (*Optional* , float): The color temperature (in `mireds <https://en.wikipedia.org/wiki/Mired> `__ or Kelvin)
2021-08-18 01:07:43 +02:00
of the warm white channel. Note that this option is required to control the mixing from Home Assistant.
2020-04-10 17:47:45 +02:00
- **constant_brightness** (*Optional* , boolean): When enabled, this will keep the overall brightness of the cold and warm white channels constant by limiting the combined output to 100% of a single channel. This reduces the possible overall brightness but is necessary for some power supplies that are not able to run both channels at full brightness at once. Defaults to `` false `` .
2018-08-24 22:44:01 +02:00
- **effects** (*Optional* , list): A list of :ref: `light effects <light-effects>` to use for this light.
- **id** (*Optional* , :ref: `config-id` ): Manually specify the ID used for code generation.
2019-05-12 22:44:59 +02:00
- All other options from :ref: `Light <config-light>` .
2018-08-24 22:44:01 +02:00
See Also
--------
2019-02-07 13:54:45 +01:00
- :doc: `/components/output/index`
- :doc: `/components/light/index`
- :doc: `/components/light/rgb`
- :doc: `/components/light/rgbw`
2021-08-10 11:29:11 +02:00
- :doc: `/components/light/rgbww`
- :doc: `/components/light/rgbct`
- :doc: `/components/light/color_temperature`
2019-02-07 13:54:45 +01:00
- :doc: `/components/power_supply`
- :doc: `/components/output/ledc`
- :doc: `/components/output/esp8266_pwm`
- :doc: `/components/output/pca9685`
2019-10-14 11:38:20 +02:00
- :doc: `/components/output/tlc59208f`
2021-08-10 11:29:11 +02:00
- :apiref: `cwww/cwww_light_output.h`
2019-02-07 13:54:45 +01:00
- :ghedit: `Edit`