mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-10 10:11:29 +01:00
5e517bb13f
* [light] Tidy up name/id * Update components/light/shelly_dimmer.rst --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
39 lines
904 B
ReStructuredText
39 lines
904 B
ReStructuredText
Binary Light
|
|
============
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up binary ON/OFF lights in ESPHome.
|
|
:image: lightbulb.svg
|
|
|
|
The ``binary`` light platform creates a simple ON/OFF-only light from a
|
|
:ref:`binary output component <output>`.
|
|
|
|
.. figure:: images/binary-ui.png
|
|
:align: center
|
|
:width: 40.0%
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
light:
|
|
- platform: binary
|
|
name: "Desk Lamp"
|
|
output: light_output
|
|
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **output** (**Required**, :ref:`config-id`): The id of the binary :ref:`output` to use for this light.
|
|
- All other options from :ref:`Light <config-light>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`/components/output/index`
|
|
- :doc:`/components/light/index`
|
|
- :doc:`/components/output/gpio`
|
|
- :doc:`/components/power_supply`
|
|
- :apiref:`binary/light/binary_light_output.h`
|
|
- :ghedit:`Edit`
|