mirror of
https://github.com/home-assistant/core.git
synced 2026-04-21 02:15:24 +00:00
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)
|