Set polling interval to 15 minutes

This commit is contained in:
Jules 2023-12-24 11:32:01 +01:00
parent 6fad0e483a
commit ee083a8fdf
Signed by: jdejaegh
GPG key ID: 99D6D184CA66933A

View file

@ -27,7 +27,7 @@ class IrmKmiCoordinator(DataUpdateCoordinator):
# Name of the data. For logging purposes.
name="IRM KMI weather",
# Polling interval. Will only be polled if there are subscribers.
update_interval=timedelta(seconds=30),
update_interval=timedelta(minutes=15),
)
self._api_client = IrmKmiApiClient(session=async_get_clientsession(hass))
self._coord = coord