1
mirror of https://github.com/home-assistant/core synced 2024-07-30 21:18:57 +02:00

Reduce reporting delta for ZHA humidity channel (#49070)

This commit is contained in:
Abílio Costa 2021-04-12 17:02:59 +01:00 committed by GitHub
parent 885f528711
commit ebc2bec08d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ class RelativeHumidity(ZigbeeChannel):
REPORT_CONFIG = [ REPORT_CONFIG = [
{ {
"attr": "measured_value", "attr": "measured_value",
"config": (REPORT_CONFIG_MIN_INT, REPORT_CONFIG_MAX_INT, 50), "config": (REPORT_CONFIG_MIN_INT, REPORT_CONFIG_MAX_INT, 100),
} }
] ]