2019-05-13 08:16:55 +00:00
|
|
|
"""Config flow for SONOS."""
|
2019-10-19 21:52:42 +00:00
|
|
|
import pysonos
|
|
|
|
|
2019-05-13 08:16:55 +00:00
|
|
|
from homeassistant import config_entries
|
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
|
|
|
|
|
|
|
|
|
|
|
|
async def _async_has_devices(hass):
|
|
|
|
"""Return if there are devices that can be discovered."""
|
|
|
|
return await hass.async_add_executor_job(pysonos.discover)
|
|
|
|
|
|
|
|
|
|
|
|
config_entry_flow.register_discovery_flow(
|
2019-07-31 19:25:30 +00:00
|
|
|
DOMAIN, "Sonos", _async_has_devices, config_entries.CONN_CLASS_LOCAL_PUSH
|
|
|
|
)
|