core/homeassistant/components/homeassistant_yellow/config_flow.py

63 lines
2.1 KiB
Python
Raw Normal View History

"""Config flow for the Home Assistant Yellow integration."""
from __future__ import annotations
from typing import Any
from homeassistant.components.homeassistant_hardware import silabs_multiprotocol_addon
from homeassistant.config_entries import ConfigEntry, ConfigFlow
from homeassistant.core import callback
from homeassistant.data_entry_flow import FlowResult
from .const import DOMAIN, ZHA_HW_DISCOVERY_DATA
class HomeAssistantYellowConfigFlow(ConfigFlow, domain=DOMAIN):
"""Handle a config flow for Home Assistant Yellow."""
VERSION = 1
@staticmethod
@callback
def async_get_options_flow(
config_entry: ConfigEntry,
) -> HomeAssistantYellowOptionsFlow:
"""Return the options flow."""
return HomeAssistantYellowOptionsFlow(config_entry)
async def async_step_system(self, data: dict[str, Any] | None = None) -> FlowResult:
"""Handle the initial step."""
if self._async_current_entries():
return self.async_abort(reason="single_instance_allowed")
return self.async_create_entry(title="Home Assistant Yellow", data={})
class HomeAssistantYellowOptionsFlow(silabs_multiprotocol_addon.OptionsFlowHandler):
"""Handle an option flow for Home Assistant Yellow."""
async def _async_serial_port_settings(
self,
) -> silabs_multiprotocol_addon.SerialPortSettings:
"""Return the radio serial port settings."""
return silabs_multiprotocol_addon.SerialPortSettings(
device="/dev/ttyAMA1",
baudrate="115200",
flow_control=True,
)
async def _async_zha_physical_discovery(self) -> dict[str, Any]:
"""Return ZHA discovery data when multiprotocol FW is not used.
Passed to ZHA do determine if the ZHA config entry is connected to the radio
being migrated.
"""
return {"hw": ZHA_HW_DISCOVERY_DATA}
def _zha_name(self) -> str:
"""Return the ZHA name."""
return "Yellow Multi-PAN"
def _hardware_name(self) -> str:
"""Return the name of the hardware."""
return "Home Assistant Yellow"