2018-04-18 14:27:44 +00:00
|
|
|
"""Constants for the deCONZ component."""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger('homeassistant.components.deconz')
|
|
|
|
|
|
|
|
DOMAIN = 'deconz'
|
|
|
|
CONFIG_FILE = 'deconz.conf'
|
2018-04-29 14:16:20 +00:00
|
|
|
DATA_DECONZ_EVENT = 'deconz_events'
|
2018-04-18 14:27:44 +00:00
|
|
|
DATA_DECONZ_ID = 'deconz_entities'
|
2018-05-05 14:11:00 +00:00
|
|
|
DATA_DECONZ_UNSUB = 'deconz_dispatchers'
|
2018-05-29 14:09:53 +00:00
|
|
|
|
|
|
|
CONF_ALLOW_CLIP_SENSOR = 'allow_clip_sensor'
|