* Add new device without restarting hass * Remove debug prints * Fix copy paste error * Fix comments from balloob Add tests to verify signalling with new added devices * Fix hound comments Add test to verify when new sensor is added * Fix tests * Unload entry should unsubscribe all deconz dispatchers * Make sure mock setup also creates unsub in hass data * Fix copy paste issue * Lint
10 lines
280 B
Python
10 lines
280 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'
|