From 7cc394a22fcb162bec250fb3b67a7d43258802b9 Mon Sep 17 00:00:00 2001 From: Daniel Hofer Date: Fri, 15 Apr 2022 17:55:47 +0200 Subject: [PATCH] Increase update interval to 3 secs --- custom_components/bmstools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/bmstools/__init__.py b/custom_components/bmstools/__init__.py index ff09ace..8199270 100644 --- a/custom_components/bmstools/__init__.py +++ b/custom_components/bmstools/__init__.py @@ -77,7 +77,7 @@ def sync_update_data() -> dict: _LOGGER, name="BMS Tools", update_method=async_update_data, - update_interval=timedelta(seconds=1), + update_interval=timedelta(seconds=3), ) await coordinator.async_config_entry_first_refresh()