Change ondilo_ico update interval to 5 minutes (#61153)

API has a rate limit of 30 queries per hours, 5 minutes uses 12 queries and leave a reasonable reserve but ensures timestamps of measurements in Home Assistant are about equal to real timestamps
This commit is contained in:
Alexander Leisentritt 2021-12-07 13:01:34 +01:00 committed by GitHub
parent af2e95d891
commit 4eeee79517
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,7 +89,7 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = (
)
SCAN_INTERVAL = timedelta(hours=1)
SCAN_INTERVAL = timedelta(minutes=5)
_LOGGER = logging.getLogger(__name__)