Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Matter integration."""
2 
3 import logging
4 
5 ADDON_SLUG = "core_matter_server"
6 
7 CONF_INTEGRATION_CREATED_ADDON = "integration_created_addon"
8 CONF_USE_ADDON = "use_addon"
9 
10 DOMAIN = "matter"
11 LOGGER = logging.getLogger(__package__)
12 
13 # prefixes to identify device identifier id types
14 ID_TYPE_DEVICE_ID = "deviceid"
15 ID_TYPE_SERIAL = "serial"
16 
17 FEATUREMAP_ATTRIBUTE_ID = 65532