From 088fb7eff338ea8ab69bc5c5bf068312e39c339c Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 7 Oct 2020 13:49:45 +0200 Subject: [PATCH] Reduce Somfy polling (#41389) --- homeassistant/components/somfy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/somfy/__init__.py b/homeassistant/components/somfy/__init__.py index fbc76e7c938..c3aa3a58837 100644 --- a/homeassistant/components/somfy/__init__.py +++ b/homeassistant/components/somfy/__init__.py @@ -28,7 +28,7 @@ DEVICES = "devices" _LOGGER = logging.getLogger(__name__) -SCAN_INTERVAL = timedelta(seconds=30) +SCAN_INTERVAL = timedelta(minutes=1) CONF_OPTIMISTIC = "optimistic"