From dc369ca676447aa4a75ac592b6e8839613ba3d8f Mon Sep 17 00:00:00 2001 From: GrKoR Date: Fri, 15 Jul 2022 16:39:45 +0300 Subject: [PATCH] comment about NodeMCU in example configs --- examples/advanced/ac_common.yaml | 1 + examples/simple/aux_ac_simple.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/advanced/ac_common.yaml b/examples/advanced/ac_common.yaml index 717a066..8fe5032 100644 --- a/examples/advanced/ac_common.yaml +++ b/examples/advanced/ac_common.yaml @@ -47,6 +47,7 @@ web_server: # UART0 configuration for AUX air conditioner communication uart: id: ac_uart_bus + # ATTENTION! Use GPIO4 (D2) and GPIO5 (D1) as the TX and RX for NodeMCU-like boards! tx_pin: GPIO1 rx_pin: GPIO3 baud_rate: 4800 diff --git a/examples/simple/aux_ac_simple.yaml b/examples/simple/aux_ac_simple.yaml index df12e23..e068f2d 100644 --- a/examples/simple/aux_ac_simple.yaml +++ b/examples/simple/aux_ac_simple.yaml @@ -34,6 +34,7 @@ ota: # UART0 configuration for AUX air conditioner communication uart: id: ac_uart_bus + # ATTENTION! Use GPIO4 (D2) and GPIO5 (D1) as the TX and RX for NodeMCU-like boards! tx_pin: GPIO1 rx_pin: GPIO3 baud_rate: 4800