mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
e671e4408b
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
12 lines
305 B
Python
12 lines
305 B
Python
"""Constants for the liebherr integration."""
|
|
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "liebherr"
|
|
MANUFACTURER: Final = "Liebherr"
|
|
|
|
SCAN_INTERVAL: Final = timedelta(seconds=60)
|
|
DEVICE_SCAN_INTERVAL: Final = timedelta(minutes=5)
|
|
REFRESH_DELAY: Final = timedelta(seconds=5)
|