mirror of
https://github.com/esphome/esphome-docs.git
synced 2025-02-15 01:31:35 +01:00
Add doc for color correction of rgb* lights (#431)
* Add doc for color correction of rgb* lights * PR changes * .
This commit is contained in:
parent
b5a50b5b62
commit
9382e2f37a
@ -35,6 +35,32 @@ The ``rgb`` light platform creates an RGB light from 3 :ref:`float output compon
|
|||||||
pin: D1
|
pin: D1
|
||||||
# Repeat for green and blue output
|
# Repeat for green and blue output
|
||||||
|
|
||||||
|
Color Correction
|
||||||
|
----------------
|
||||||
|
|
||||||
|
It is often favourable to calibrate/correct the color produced by an LED strip light as the
|
||||||
|
perceived intensity of different colors will generally vary. This can be done by using
|
||||||
|
:ref:`max_power <config-output>` on individual output channels:
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
# Example configuration entry
|
||||||
|
light:
|
||||||
|
- platform: rgb
|
||||||
|
name: "Living Room Lights"
|
||||||
|
red: output_component1
|
||||||
|
green: output_component2
|
||||||
|
blue: output_component3
|
||||||
|
|
||||||
|
# Example output entry
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
id: output_component1
|
||||||
|
pin: D1
|
||||||
|
max_power: 80%
|
||||||
|
# Repeat for green and blue output
|
||||||
|
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
@ -18,6 +18,31 @@ The ``rgbw`` light platform creates an RGBW light from 4 :ref:`float output comp
|
|||||||
blue: output_component3
|
blue: output_component3
|
||||||
white: output_component4
|
white: output_component4
|
||||||
|
|
||||||
|
Color Correction
|
||||||
|
----------------
|
||||||
|
|
||||||
|
It is often favourable to calibrate/correct the color produced by an LED strip light as the
|
||||||
|
perceived intensity of different colors will generally vary. This can be done by using
|
||||||
|
:ref:`max_power <config-output>` on individual output channels:
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
# Example configuration entry
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
name: "Livingroom Lights"
|
||||||
|
red: output_component1
|
||||||
|
green: output_component2
|
||||||
|
blue: output_component3
|
||||||
|
white: output_component4
|
||||||
|
|
||||||
|
# Example output entry
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
id: output_component1
|
||||||
|
pin: D1
|
||||||
|
max_power: 80%
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
@ -23,6 +23,33 @@ and warm white channels will be mixed using the color temperature configuration
|
|||||||
cold_white_color_temperature: 6536 K
|
cold_white_color_temperature: 6536 K
|
||||||
warm_white_color_temperature: 2000 K
|
warm_white_color_temperature: 2000 K
|
||||||
|
|
||||||
|
Color Correction
|
||||||
|
----------------
|
||||||
|
|
||||||
|
It is often favourable to calibrate/correct the color produced by an LED strip light as the
|
||||||
|
perceived intensity of different colors will generally vary. This can be done by using
|
||||||
|
:ref:`max_power <config-output>` on individual output channels:
|
||||||
|
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
# Example configuration entry
|
||||||
|
light:
|
||||||
|
- platform: rgbw
|
||||||
|
name: "Livingroom Lights"
|
||||||
|
red: output_component1
|
||||||
|
green: output_component2
|
||||||
|
blue: output_component3
|
||||||
|
white: output_component4
|
||||||
|
|
||||||
|
# Example output entry
|
||||||
|
output:
|
||||||
|
- platform: esp8266_pwm
|
||||||
|
id: output_component1
|
||||||
|
pin: D1
|
||||||
|
max_power: 80%
|
||||||
|
|
||||||
|
|
||||||
Configuration variables:
|
Configuration variables:
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user