Skip to content

Commit 80c78a9

Browse files
committed
Added warning concerning usage of UART0
1 parent 22d23d7 commit 80c78a9

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

components/optolink.rst

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,22 @@ Platform configuration
4242
Configuration variables:
4343
~~~~~~~~~~~~~~~~~~~~~~~~
4444
- **protocol** (**Required**, string): The protocol for communication (``KW`` or ``P300``, ``GWG`` is not supported). See `this page <https://github.com/openv/openv/wiki/Geräte>`__
45-
- **rx_pin** (*Optional*, :ref:`Pin <config-pin>`, only ESP32): Receive pin
46-
- **tx_pin** (*Optional*, :ref:`Pin <config-pin>`, only ESP32): Transmit pin
45+
- **rx_pin** (*Optional*, :ref:`Pin <config-pin>`, only ESP32): Receive pin (RX)
46+
- **tx_pin** (*Optional*, :ref:`Pin <config-pin>`, only ESP32): Transmit pin (TX)
4747
- **logger** (*Optional*, boolean): Enable this for more detailled log output. See *Troubleshooting*. Defaults to 'false'.
4848
- **device_info** (*Optional*, string): If set to a non-empty value, a :doc:`/components/text_sensor/index` with the variables name is created displaying information of your Vitotronic controlling unit. Defaults to an empty value.
4949
- **state** (*Optional*, string): If set to a non-empty value, a :doc:`/components/text_sensor/index` with the internal state of the component is created. Defaults to an empty value. See *Troubleshooting*.
5050

51+
.. warning::
52+
53+
The ``optolink`` platform uses UART0 for communication with the heating component. Don't mix it with other components that use UART0.
54+
Especially the :doc:`/components/logger` uses by default UART0 to write log messages to the serial port. If you plan to use the :doc:`/components/logger`, configure it to use another serial port.
55+
56+
.. code-block:: yaml
57+
58+
logger:
59+
hardware_uart: UART1
60+
5161
Sensors
5262
*******
5363
.. code-block:: yaml

0 commit comments

Comments
 (0)