hass-core/homeassistant/components/homeassistant_yellow/const.py
puddly 5818e2c2d4
Yellow firmware selection options flow (#122868)
* 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
2024-08-27 23:14:41 +02:00

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"