2019-05-13 08:16:55 +00:00
|
|
|
"""Config flow for SONOS."""
|
2019-10-19 21:52:42 +00:00
|
|
|
import pysonos
|
|
|
|
|
2021-04-26 21:59:04 +00:00
|
|
|
from homeassistant.core import HomeAssistant
|
2019-10-19 21:52:42 +00:00
|
|
|
from homeassistant.helpers import config_entry_flow
|
|
|
|
|
2019-05-13 08:16:55 +00:00
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
|
|
|
2021-04-26 21:59:04 +00:00
|
|
|
async def _async_has_devices(hass: HomeAssistant) -> bool:
|
2019-05-13 08:16:55 +00:00
|
|
|
"""Return if there are devices that can be discovered."""
|
2021-04-26 21:59:04 +00:00
|
|
|
result = await hass.async_add_executor_job(pysonos.discover)
|
|
|
|
return bool(result)
|
2019-05-13 08:16:55 +00:00
|
|
|
|
|
|
|
|
2021-04-29 21:12:58 +00:00
|
|
|
config_entry_flow.register_discovery_flow(DOMAIN, "Sonos", _async_has_devices)
|