* Working but incomplete * Remove events on unload * Add unload test * Fix failing sensor test * Improve unload test * Move DeconzEvent to init * Fix visual under-indentation
9 lines
239 B
Python
9 lines
239 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'
|