2021-11-06 18:34:51 +00:00
|
|
|
"""Constants for the RDW integration."""
|
2024-03-08 14:05:07 +00:00
|
|
|
|
2021-11-06 18:34:51 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from datetime import timedelta
|
|
|
|
import logging
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
DOMAIN: Final = "rdw"
|
|
|
|
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
SCAN_INTERVAL = timedelta(hours=1)
|
|
|
|
|
|
|
|
CONF_LICENSE_PLATE: Final = "license_plate"
|