62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
|
"""The Airthings integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from datetime import timedelta
|
||
|
import logging
|
||
|
|
||
|
from airthings import Airthings, AirthingsError
|
||
|
|
||
|
from homeassistant.config_entries import ConfigEntry
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
|
||
|
|
||
|
from .const import CONF_ID, CONF_SECRET, DOMAIN
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
PLATFORMS: list[str] = ["sensor"]
|
||
|
SCAN_INTERVAL = timedelta(minutes=6)
|
||
|
|
||
|
|
||
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||
|
"""Set up Airthings from a config entry."""
|
||
|
hass.data.setdefault(DOMAIN, {})
|
||
|
|
||
|
airthings = Airthings(
|
||
|
entry.data[CONF_ID],
|
||
|
entry.data[CONF_SECRET],
|
||
|
async_get_clientsession(hass),
|
||
|
)
|
||
|
|
||
|
async def _update_method():
|
||
|
"""Get the latest data from Airthings."""
|
||
|
try:
|
||
|
return await airthings.update_devices()
|
||
|
except AirthingsError as err:
|
||
|
raise UpdateFailed(f"Unable to fetch data: {err}") from err
|
||
|
|
||
|
coordinator = DataUpdateCoordinator(
|
||
|
hass,
|
||
|
_LOGGER,
|
||
|
name=DOMAIN,
|
||
|
update_method=_update_method,
|
||
|
update_interval=SCAN_INTERVAL,
|
||
|
)
|
||
|
await coordinator.async_config_entry_first_refresh()
|
||
|
|
||
|
hass.data[DOMAIN][entry.entry_id] = coordinator
|
||
|
|
||
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
||
|
|
||
|
return True
|
||
|
|
||
|
|
||
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||
|
"""Unload a config entry."""
|
||
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
||
|
if unload_ok:
|
||
|
hass.data[DOMAIN].pop(entry.entry_id)
|
||
|
|
||
|
return unload_ok
|