Skip to content

Latest commit

 

History

History
55 lines (47 loc) · 2.24 KB

color_temperature.rst

File metadata and controls

55 lines (47 loc) · 2.24 KB

Color Temperature Light

The color_temperature light platform creates a Color Temperature light from 2 float output components <output>. One channel controls the LED temperature, and the other channel controls the brightness.

# Example configuration entry
light:
  - platform: color_temperature
    name: "Livingroom Lights"
    color_temperature: output_component1
    brightness: output_component2
    cold_white_color_temperature: 6536 K
    warm_white_color_temperature: 2000 K

Configuration variables:

  • name (Required, string): The name of the light.
  • color_temperature (Required, config-id): The id of the float output to use for the color temperature.
  • brightness (Required, config-id): The id of the float output to use for the brightness.
  • cold_white_color_temperature (Required, float): The coldest color temperature supported by this light. This is the lowest value when expressed in mireds, or the highest value when expressed in Kelvin.
  • warm_white_color_temperature (Required, float): The warmest color temperature supported by this light. This is the highest value when expressed in mireds, or the lowest value when expressed in Kelvin.
  • effects (Optional, list): A list of light effects <light-effects> to use for this light.
  • id (Optional, config-id): Manually specify the ID used for code generation.
  • All other options from Light <config-light>.

See Also

  • /components/output/index
  • /components/light/index
  • /components/light/cwww
  • /components/light/rgb
  • /components/light/rgbw
  • /components/light/rgbww
  • /components/light/rgbct
  • /components/power_supply
  • /components/output/ledc
  • /components/output/esp8266_pwm
  • /components/output/pca9685
  • /components/output/tlc59208f
  • color_temperature/ct_light_output.h
  • Edit