From 1d7d736a4f85d23cc9618c2abbb944f6bc85baf2 Mon Sep 17 00:00:00 2001 From: Christophe Painchaud Date: Fri, 12 Feb 2021 16:04:29 +0100 Subject: [PATCH] Document RFLink integration TCP KEEP ALIVE option (#16527) Goes along with a code change in CORE https://github.com/home-assistant/core/pull/46438 --- source/_integrations/rflink.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/_integrations/rflink.markdown b/source/_integrations/rflink.markdown index 8390c93ca60..2292589cf05 100644 --- a/source/_integrations/rflink.markdown +++ b/source/_integrations/rflink.markdown @@ -57,6 +57,11 @@ reconnect_interval: required: false default: 10 type: integer +tcp_keepalive_idle_timer: + description: Time in seconds to wait since last data packet was seen before a TCP KEEPALIVE is sent. Value of 0 will disable this feature. + required: false + default: 3600 + type: integer {% endconfiguration %} ### Full example @@ -100,6 +105,7 @@ When re-flashing the Arduino MEGA, disconnect the ESP8266 to avoid programming d rflink: host: 192.168.0.10 port: 1234 + tcp_keepalive_idle_timer: 600 ``` ### Adding devices Automatically