1
0
mirror of https://github.com/home-assistant/core.git synced 2026-03-04 08:40:04 +00:00
Files
core/homeassistant/components/indevolt/__init__.py
2026-02-19 17:46:13 +01:00

29 lines
986 B
Python

"""Home Assistant integration for indevolt device."""
from __future__ import annotations
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant
from .coordinator import IndevoltConfigEntry, IndevoltCoordinator
PLATFORMS: list[Platform] = [Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
async def async_setup_entry(hass: HomeAssistant, entry: IndevoltConfigEntry) -> bool:
"""Set up indevolt integration entry using given configuration."""
coordinator = IndevoltCoordinator(hass, entry)
await coordinator.async_config_entry_first_refresh()
entry.runtime_data = coordinator
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
return True
async def async_unload_entry(hass: HomeAssistant, entry: IndevoltConfigEntry) -> bool:
"""Unload a config entry / clean up resources (when integration is removed / reloaded)."""
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)