From 4968a12b6cec307e296e713b09baa1546a9c0b72 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 7b1430b19c0..df0739bba31 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"