esphome-docs/components/switch/uart.rst

47 lines
1.4 KiB
ReStructuredText
Raw Normal View History

UART Switch
===========
2018-11-14 22:12:27 +01:00
.. seo::
2019-02-16 23:25:23 +01:00
:description: Instructions for setting up UART switches in ESPHome that can output arbitrary UART sequences when activated.
:image: uart.png
2018-11-14 22:12:27 +01:00
The ``uart`` switch 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
uart:
baud_rate: 9600
tx_pin: D0
switch:
- platform: uart
name: "UART String Output"
data: 'DataToSend'
- platform: uart
name: "UART Bytes Output"
data: [0xDE, 0xAD, 0xBE, 0xEF]
2021-02-27 23:53:29 +01:00
- platform: uart
name: "UART Recurring Output"
data: [0xDE, 0xAD, 0xBE, 0xEF]
send_every: 1s
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
- **data** (**Required**, string or list of bytes): The data to send via UART. Either an ASCII string
or a list of bytes.
- **name** (**Required**, string): The name for the switch.
- **uart_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the UART hub.
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
2021-02-27 23:53:29 +01:00
- **send_every** (*Optional*, :ref:`config-time`): Sends recurring data instead of sending once.
2019-02-17 12:28:17 +01:00
- All other options from :ref:`Switch <config-switch>`.
See Also
2018-08-24 22:44:01 +02:00
--------
- :doc:`/components/uart`
2019-05-12 22:44:59 +02:00
- :apiref:`uart/switch/uart_switch.h`
- :ghedit:`Edit`