10 lines
210 B
Python
10 lines
210 B
Python
|
"""Constants for the Airzone integration."""
|
||
|
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final = "airzone"
|
||
|
MANUFACTURER: Final = "Airzone"
|
||
|
|
||
|
AIOAIRZONE_DEVICE_TIMEOUT_SEC: Final = 10
|
||
|
DEFAULT_LOCAL_API_PORT: Final = 3000
|