2018-05-13 11:37:02 +02:00
|
|
|
Generic Output Switch
|
|
|
|
=====================
|
|
|
|
|
|
|
|
The ``output`` switch platform allows you to use any output component as a switch.
|
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
.. figure:: images/output-ui.png
|
|
|
|
:align: center
|
|
|
|
:width: 80.0%
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
output:
|
|
|
|
- platform: gpio
|
|
|
|
pin: 25
|
|
|
|
id: 'generic_out'
|
|
|
|
switch:
|
|
|
|
- platform: output
|
|
|
|
name: "Generic Output"
|
|
|
|
output: 'generic_out'
|
|
|
|
|
|
|
|
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
|
|
|
- **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
|
2018-08-24 22:44:01 +02:00
|
|
|
--------
|
2018-06-01 18:10:00 +02:00
|
|
|
|
|
|
|
- :doc:`/esphomeyaml/components/output/index`
|
|
|
|
- :doc:`API Reference </api/switch/index>`
|
2018-06-04 08:17:22 +02:00
|
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/switch/output.rst>`__
|