mirror of
https://github.com/home-assistant/core.git
synced 2025-05-12 01:49:16 +00:00
14 lines
299 B
Python
14 lines
299 B
Python
"""Consts used by Tradfri."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_GATEWAY_ID = "gateway_id"
|
|
CONF_IDENTITY = "identity"
|
|
CONF_KEY = "key"
|
|
COORDINATOR = "coordinator"
|
|
COORDINATOR_LIST = "coordinator_list"
|
|
DOMAIN = "tradfri"
|
|
FACTORY = "tradfri_factory"
|
|
KEY_API = "tradfri_api"
|