15 lines
352 B
Python
15 lines
352 B
Python
"""Constants for the Matter integration."""
|
|
import logging
|
|
|
|
ADDON_SLUG = "core_matter_server"
|
|
|
|
CONF_INTEGRATION_CREATED_ADDON = "integration_created_addon"
|
|
CONF_USE_ADDON = "use_addon"
|
|
|
|
DOMAIN = "matter"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
# prefixes to identify device identifier id types
|
|
ID_TYPE_DEVICE_ID = "deviceid"
|
|
ID_TYPE_SERIAL = "serial"
|