* Added new integration to support Electra Smart (HVAC) * fixes + option to set scan interval * renamed the module to electrasmart and added unittests * added non tested files to .coveragerc * changed the usage from UpdateCoordinator to each entity updates it self * small fixes * increased pypi package version, increased polling timeout to 60 seconds, improved error handling * PARALLEL_UPDATE=1 to prevent multi access to the API * code improvements * aligned with the new HA APIs * fixes * fixes * more * fixes * more * more * handled re-atuh flow * fixed test * removed hvac action * added shabat mode * tests: 100% coverage * ran hassfest * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/manifest.json Co-authored-by: Shay Levy <levyshay1@gmail.com> * Update homeassistant/components/electrasmart/climate.py Co-authored-by: Shay Levy <levyshay1@gmail.com> * address Shay's comments * address Shay's comments * address more comments --------- Co-authored-by: Shay Levy <levyshay1@gmail.com>
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
"""The Electra Air Conditioner integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import cast
|
|
|
|
from electrasmart.api import ElectraAPI, ElectraApiError
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_TOKEN, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import CONF_IMEI, DOMAIN
|
|
|
|
PLATFORMS: list[Platform] = [Platform.CLIMATE]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up Electra Smart Air Conditioner from a config entry."""
|
|
hass.data.setdefault(DOMAIN, {})
|
|
entry.async_on_unload(entry.add_update_listener(update_listener))
|
|
hass.data[DOMAIN][entry.entry_id] = ElectraAPI(
|
|
async_get_clientsession(hass), entry.data[CONF_IMEI], entry.data[CONF_TOKEN]
|
|
)
|
|
|
|
try:
|
|
await cast(ElectraAPI, hass.data[DOMAIN][entry.entry_id]).fetch_devices()
|
|
except ElectraApiError as exp:
|
|
raise ConfigEntryNotReady(f"Error communicating with API: {exp}") from exp
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|
|
|
|
|
|
async def update_listener(hass: HomeAssistant, config_entry: ConfigEntry) -> None:
|
|
"""Update listener."""
|
|
await hass.config_entries.async_reload(config_entry.entry_id)
|