mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-19 11:25:25 +01:00
88e315e0e4
* Many example yaml tidy-ups * Update components/sensor/hlw8012.rst --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
38 lines
1.1 KiB
ReStructuredText
38 lines
1.1 KiB
ReStructuredText
UART Button
|
|
===========
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up UART buttons in ESPHome that can output arbitrary UART sequences when activated.
|
|
:image: uart.svg
|
|
|
|
The ``uart`` button platform allows you to send a pre-defined sequence of bytes on a
|
|
:doc:`UART bus </components/uart>` when triggered.
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
button:
|
|
- platform: uart
|
|
name: "UART String Output"
|
|
data: 'DataToSend'
|
|
- platform: uart
|
|
name: "UART Bytes Output"
|
|
data: [0xDE, 0xAD, 0xBE, 0xEF]
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
|
- **name** (*Optional*, string): The name for the button.
|
|
- **data** (**Required**, string or list of bytes): The data to send via UART. Either an ASCII string
|
|
or a list of bytes.
|
|
- **uart_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the UART hub.
|
|
- All other options from :ref:`Button <config-button>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`/components/uart`
|
|
- :apiref:`uart/button/uart_button.h`
|
|
- :ghedit:`Edit`
|