15 lines
438 B
Python
15 lines
438 B
Python
"""Constants used by the Ambiclimate component."""
|
|
|
|
ATTR_VALUE = "value"
|
|
CONF_CLIENT_ID = "client_id"
|
|
CONF_CLIENT_SECRET = "client_secret"
|
|
DOMAIN = "ambiclimate"
|
|
SERVICE_COMFORT_FEEDBACK = "send_comfort_feedback"
|
|
SERVICE_COMFORT_MODE = "set_comfort_mode"
|
|
SERVICE_TEMPERATURE_MODE = "set_temperature_mode"
|
|
STORAGE_KEY = "ambiclimate_auth"
|
|
STORAGE_VERSION = 1
|
|
|
|
AUTH_CALLBACK_NAME = "api:ambiclimate"
|
|
AUTH_CALLBACK_PATH = "/api/ambiclimate"
|