From 73e3168b535af12c8c8fa1786a02a199715384a5 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sat, 23 Dec 2023 18:22:37 +0100 Subject: [PATCH] heartbeat warning and error time changed for tradfri button --- z_server/devices/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/z_server/devices/__init__.py b/z_server/devices/__init__.py index 984c2a6..d5b6987 100644 --- a/z_server/devices/__init__.py +++ b/z_server/devices/__init__.py @@ -169,8 +169,8 @@ class tradfri_sw_br_ct(base): class tradfri_button(base): - LAST_MSG_WARNING = 15 * 60 * 60 - LAST_MSG_ERROR = 24 * 60 * 60 + LAST_MSG_WARNING = 24 * 60 * 60 + LAST_MSG_ERROR = 48 * 60 * 60 class livarno_sw_br_ct(base):