* Move the SkyConnect config flow to hardware; * Clean up * Get SkyConnect unit tests passing * Split apart `test_util.py` * Migrate `test_config_flow` * Remove unnecessary constants * Re-apply `contextmanager` typing from #122250 * Move the SkyConnect translation strings into hardware
18 lines
554 B
Python
18 lines
554 B
Python
"""Constants for the Homeassistant Hardware integration."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
ZHA_DOMAIN = "zha"
|
|
|
|
OTBR_ADDON_NAME = "OpenThread Border Router"
|
|
OTBR_ADDON_MANAGER_DATA = "openthread_border_router"
|
|
OTBR_ADDON_SLUG = "core_openthread_border_router"
|
|
|
|
ZIGBEE_FLASHER_ADDON_NAME = "Silicon Labs Flasher"
|
|
ZIGBEE_FLASHER_ADDON_MANAGER_DATA = "silabs_flasher"
|
|
ZIGBEE_FLASHER_ADDON_SLUG = "core_silabs_flasher"
|
|
|
|
SILABS_MULTIPROTOCOL_ADDON_SLUG = "core_silabs_multiprotocol"
|
|
SILABS_FLASHER_ADDON_SLUG = "core_silabs_flasher"
|