mirror of
https://github.com/home-assistant/core.git
synced 2026-07-02 04:06:41 +01:00
837cd7d89d
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
996 B
Python
34 lines
996 B
Python
"""The Sanix integration."""
|
|
|
|
from sanix import Sanix
|
|
|
|
from homeassistant.const import CONF_TOKEN, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import CONF_SERIAL_NUMBER
|
|
from .coordinator import SanixConfigEntry, SanixCoordinator
|
|
|
|
PLATFORMS: list[Platform] = [Platform.SENSOR]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: SanixConfigEntry) -> bool:
|
|
"""Set up Sanix from a config entry."""
|
|
|
|
serial_no = entry.data[CONF_SERIAL_NUMBER]
|
|
token = entry.data[CONF_TOKEN]
|
|
|
|
sanix_api = Sanix(serial_no, token)
|
|
coordinator = SanixCoordinator(hass, entry, sanix_api)
|
|
|
|
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: SanixConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|