mirror of https://github.com/home-assistant/core
18 lines
357 B
Python
18 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"
|