mirror of https://github.com/home-assistant/core
33 lines
835 B
Python
33 lines
835 B
Python
"""Diagnostics support for Stookwijzer."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from stookwijzer import Stookwijzer
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
client: Stookwijzer = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
last_updated = None
|
|
if client.last_updated:
|
|
last_updated = client.last_updated.isoformat()
|
|
|
|
return {
|
|
"state": client.state,
|
|
"last_updated": last_updated,
|
|
"lqi": client.lqi,
|
|
"windspeed": client.windspeed,
|
|
"weather": client.weather,
|
|
"concentrations": client.concentrations,
|
|
}
|