esphome-docs/components/switch/output.rst
Otto Winter 8d9b0d2375
Netlify (#153)
* Netlify

* Fix

* Faster doxygen

* Update Makefile

* Try without api

* Debug

* Fix

* Update Makefile

* Debug

* Try 1.8.13

* Remove debug

* Update Makefile

* Optimize
2019-02-07 13:54:45 +01:00

42 lines
1.1 KiB
ReStructuredText

Generic Output Switch
=====================
.. seo::
:description: Instructions for setting up generic output switches in esphomelib that control an output component.
:image: upload.png
The ``output`` switch platform allows you to use any output component as a switch.
.. figure:: images/output-ui.png
:align: center
:width: 80.0%
.. code-block:: yaml
# Example configuration entry
output:
- platform: gpio
pin: 25
id: 'generic_out'
switch:
- platform: output
name: "Generic Output"
output: 'generic_out'
Configuration variables:
------------------------
- **output** (**Required**, :ref:`config-id`): The ID of the output component to use.
- **name** (**Required**, string): The name for the switch.
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
- All other options from :ref:`Switch <config-switch>` and :ref:`MQTT Component <config-mqtt-component>`.
See Also
--------
- :doc:`/components/output/index`
- :apiref:`switch_/output_switch.h`
- :ghedit:`Edit`
.. disqus::