From ebc2bec08dc00bb1e89d4344854546d2c23f7601 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ab=C3=ADlio=20Costa?= Date: Mon, 12 Apr 2021 17:02:59 +0100 Subject: [PATCH] Reduce reporting delta for ZHA humidity channel (#49070) --- homeassistant/components/zha/core/channels/measurement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/zha/core/channels/measurement.py b/homeassistant/components/zha/core/channels/measurement.py index 78ff12a9bf3..99d062d4c3e 100644 --- a/homeassistant/components/zha/core/channels/measurement.py +++ b/homeassistant/components/zha/core/channels/measurement.py @@ -57,7 +57,7 @@ class RelativeHumidity(ZigbeeChannel): REPORT_CONFIG = [ { "attr": "measured_value", - "config": (REPORT_CONFIG_MIN_INT, REPORT_CONFIG_MAX_INT, 50), + "config": (REPORT_CONFIG_MIN_INT, REPORT_CONFIG_MAX_INT, 100), } ]