* Option to load or not to load clip sensors on start * Full flow * Fix config flow and add tests * Fix attribute dark reporting properly * Imported and properly configured deCONZ shouldn't need extra input to create config entry
12 lines
326 B
Python
12 lines
326 B
Python
"""Constants for the deCONZ component."""
|
|
import logging
|
|
|
|
_LOGGER = logging.getLogger('homeassistant.components.deconz')
|
|
|
|
DOMAIN = 'deconz'
|
|
CONFIG_FILE = 'deconz.conf'
|
|
DATA_DECONZ_EVENT = 'deconz_events'
|
|
DATA_DECONZ_ID = 'deconz_entities'
|
|
DATA_DECONZ_UNSUB = 'deconz_dispatchers'
|
|
|
|
CONF_ALLOW_CLIP_SENSOR = 'allow_clip_sensor'
|