From 17cf0cef0f228b3a29612bc5a13165e67936e920 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 10 Jun 2021 15:08:35 +0200 Subject: [PATCH] Increase Ambee update interval to 1 hour (#51708) --- homeassistant/components/ambee/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ambee/const.py b/homeassistant/components/ambee/const.py index c30d1f8eadc..730c6780f4f 100644 --- a/homeassistant/components/ambee/const.py +++ b/homeassistant/components/ambee/const.py @@ -22,7 +22,7 @@ from .models import AmbeeSensor DOMAIN: Final = "ambee" LOGGER = logging.getLogger(__package__) -SCAN_INTERVAL = timedelta(minutes=180) +SCAN_INTERVAL = timedelta(hours=1) ATTR_ENABLED_BY_DEFAULT: Final = "enabled_by_default" ATTR_ENTRY_TYPE: Final = "entry_type"