* Implement Yellow config flow for firmware selection * Use the probed firmware type when setting up Yellow * Add translation strings * Ensure (most) existing `init` tests pass * Remove multi-PAN setup config flow unit tests * Get existing config flow unit tests passing * Add unit tests for uninstalling multi-PAN and such * Consolidate entity creation for Yellow and clean up steps * Be explicit with multiple inheritance overrides * Address review comments
17 lines
357 B
Python
17 lines
357 B
Python
"""Constants for the Home Assistant Yellow integration."""
|
|
|
|
DOMAIN = "homeassistant_yellow"
|
|
|
|
RADIO_DEVICE = "/dev/ttyAMA1"
|
|
ZHA_HW_DISCOVERY_DATA = {
|
|
"name": "Yellow",
|
|
"port": {
|
|
"path": RADIO_DEVICE,
|
|
"baudrate": 115200,
|
|
"flow_control": "hardware",
|
|
},
|
|
"radio_type": "efr32",
|
|
}
|
|
|
|
FIRMWARE = "firmware"
|
|
ZHA_DOMAIN = "zha"
|