"""The Renson integration.""" from renson_endura_delta.renson import RensonVentilation from homeassistant.const import CONF_HOST, Platform from homeassistant.core import HomeAssistant from homeassistant.exceptions import ConfigEntryNotReady from .coordinator import RensonConfigEntry, RensonCoordinator, RensonData PLATFORMS = [ Platform.BINARY_SENSOR, Platform.BUTTON, Platform.FAN, Platform.NUMBER, Platform.SENSOR, Platform.SWITCH, Platform.TIME, ] async def async_setup_entry(hass: HomeAssistant, entry: RensonConfigEntry) -> bool: """Set up Renson from a config entry.""" api = RensonVentilation(entry.data[CONF_HOST]) coordinator = RensonCoordinator(hass, entry, api) if not await hass.async_add_executor_job(api.connect): raise ConfigEntryNotReady("Cannot connect to Renson device") await coordinator.async_config_entry_first_refresh() entry.runtime_data = RensonData( api, coordinator, ) await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) return True async def async_unload_entry(hass: HomeAssistant, entry: RensonConfigEntry) -> bool: """Unload a config entry.""" return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)