mirror of
https://github.com/home-assistant/core.git
synced 2026-09-08 06:31:35 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
15 lines
352 B
Python
15 lines
352 B
Python
"""Constants for the IntelliClima integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "intelliclima"
|
|
|
|
# Update interval
|
|
DEFAULT_SCAN_INTERVAL = timedelta(minutes=1)
|
|
|
|
# Filter status is expensive to compute cloud-side, so it's polled far less often.
|
|
FILTER_SCAN_INTERVAL = timedelta(days=1)
|