esphome-docs/components/light/monochromatic.rst

57 lines
1.6 KiB
ReStructuredText
Raw Normal View History

2018-05-13 11:37:02 +02:00
Monochromatic Light
===================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up monochromatic (brightness-only) lights.
:image: brightness-medium.svg
2018-11-14 22:12:27 +01:00
2018-06-01 18:10:00 +02:00
The ``monochromatic`` light platform creates a simple brightness-only light from an
:ref:`float output component <output>`.
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
.. figure:: images/monochromatic-strip.jpg
:align: center
:width: 75.0%
Example of a brightness-only LED strip that can be used with this component.
.. figure:: images/kitchen-lights.png
:align: center
:width: 40.0%
2018-05-13 11:37:02 +02:00
.. code-block:: yaml
2018-05-13 11:37:02 +02:00
# Example configuration entry
light:
- platform: monochromatic
name: "Kitchen Lights"
output: output_component1
2019-02-16 23:25:23 +01:00
2018-05-13 11:37:02 +02:00
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
2018-05-13 11:37:02 +02:00
2018-06-01 18:10:00 +02:00
- **name** (**Required**, string): The name of the light.
- **output** (**Required**, :ref:`config-id`): The id of the float :ref:`output` to use for this light.
- **effects** (*Optional*, list): A list of :ref:`light effects <light-effects>` to use for this light.
2019-02-17 12:28:17 +01:00
- **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-06-01 18:10:00 +02:00
See Also
2018-08-24 22:44:01 +02:00
--------
2018-06-01 18:10:00 +02:00
2018-06-07 16:01:31 +02:00
.. figure:: images/monochromatic-detail.jpg
2018-06-01 18:10:00 +02:00
:align: center
:width: 75.0%
- :doc:`/components/output/index`
- :doc:`/components/light/index`
- :doc:`/components/light/binary`
- :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`
- :doc:`/components/output/my9231`
2019-05-12 22:44:59 +02:00
- :apiref:`monochromatic/monochromatic_light_output.h`
- :ghedit:`Edit`