Cold White + Warm White Light ============================= .. seo:: :description: Instructions for setting up Cold White + Warm White lights. :image: brightness-medium.svg The ``cwww`` light platform creates an Cold-White+Warm-White light from 2 :ref:`float output components ` (one for each channel). The two channels will be mixed using the color temperature configuration options. .. code:: yaml # Example configuration entry light: - platform: rgbw name: "Livingroom Lights" cold_white: output_component1 warm_white: output_component2 cold_white_color_temperature: 153 mireds warm_white_color_temperature: 500 mireds 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. - **cold_white_color_temperature** (**Required**, float): The color temperate (in `mireds `__) of the cold white channel. - **warm_white_color_temperature** (**Required**, float): The color temperate (in `mireds `__) of the warm white channel. - **gamma_correct** (*Optional*, float): The `gamma correction factor `__ for the light. Defaults to ``2.8``. - **default_transition_length** (*Optional*, :ref:`config-time`): The length of the transition if no transition parameter is provided by Home Assistant. Defaults to ``1s``. - **effects** (*Optional*, list): A list of :ref:`light effects ` to use for this light. - **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation. - All other options from :ref:`MQTT Component `. .. note:: The CWWW light platform only works with ``float`` :ref:`outputs ` that can output any light intensity percentage like the :doc:`ESP32 LEDC ` or :doc:`ESP8266 PWM ` components and does **not** work with output platforms like the :doc:`/esphomeyaml/components/output/gpio`. See Also -------- - :doc:`/esphomeyaml/components/output/index` - :doc:`/esphomeyaml/components/light/index` - :doc:`/esphomeyaml/components/light/rgb` - :doc:`/esphomeyaml/components/light/rgbw` - :doc:`/esphomeyaml/components/power_supply` - :doc:`/esphomeyaml/components/output/ledc` - :doc:`/esphomeyaml/components/output/esp8266_pwm` - :doc:`/esphomeyaml/components/output/pca9685` - :doc:`API Reference ` - `Edit this page on GitHub `__ .. disqus::