mirror of
https://github.com/Gurkengewuerz/casait-has.git
synced 2025-01-18 07:36:26 +01:00
18 lines
340 B
Python
18 lines
340 B
Python
"""Constants for the Smart Home integration."""
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "smart_home"
|
|
|
|
CONF_HOST: Final = "host"
|
|
CONF_PORT: Final = "port"
|
|
CONF_NAME: Final = "name"
|
|
|
|
DEFAULT_PORT: Final = 5000
|
|
|
|
# Config flow and options flow
|
|
STEP_USER: Final = "user"
|
|
|
|
DATA_COORDINATOR: Final = "coordinator"
|
|
DATA_CONFIG: Final = "config"
|
|
|