mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-02 08:49:48 +01:00
7fd533fe17
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
40 lines
1016 B
ReStructuredText
40 lines
1016 B
ReStructuredText
Generic Output Lock
|
|
=====================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up generic output locks in ESPHome that control an output component.
|
|
:image: upload.svg
|
|
|
|
The ``output`` lock platform allows you to use any output component as a lock.
|
|
|
|
.. figure:: images/output-ui.png
|
|
:align: center
|
|
:width: 80.0%
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
output:
|
|
- platform: gpio
|
|
pin: 25
|
|
id: 'generic_out'
|
|
lock:
|
|
- 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 lock.
|
|
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
|
- All other options from :ref:`Lock <config-lock>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`/components/output/index`
|
|
- :apiref:`output/lock/output_lock.h`
|
|
- :ghedit:`Edit`
|