-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Home Assistant 2023.6.0b4 (#66)
Co-authored-by: rikroe <[email protected]>
- Loading branch information
1 parent
bca9e82
commit 5f3a27c
Showing
8 changed files
with
143 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
"""Switch platform for BMW.""" | ||
|
||
from collections.abc import Callable, Coroutine | ||
from dataclasses import dataclass | ||
import logging | ||
from typing import Any | ||
|
||
from bimmer_connected.models import MyBMWAPIError | ||
from bimmer_connected.vehicle import MyBMWVehicle | ||
from bimmer_connected.vehicle.fuel_and_battery import ChargingState | ||
|
||
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription | ||
from homeassistant.config_entries import ConfigEntry | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.exceptions import HomeAssistantError | ||
from homeassistant.helpers.entity_platform import AddEntitiesCallback | ||
|
||
from . import BMWBaseEntity | ||
from .const import DOMAIN | ||
from .coordinator import BMWDataUpdateCoordinator | ||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
@dataclass | ||
class BMWRequiredKeysMixin: | ||
"""Mixin for required keys.""" | ||
|
||
value_fn: Callable[[MyBMWVehicle], bool] | ||
remote_service_on: Callable[[MyBMWVehicle], Coroutine[Any, Any, Any]] | ||
remote_service_off: Callable[[MyBMWVehicle], Coroutine[Any, Any, Any]] | ||
|
||
|
||
@dataclass | ||
class BMWSwitchEntityDescription(SwitchEntityDescription, BMWRequiredKeysMixin): | ||
"""Describes BMW switch entity.""" | ||
|
||
is_available: Callable[[MyBMWVehicle], bool] = lambda _: False | ||
dynamic_options: Callable[[MyBMWVehicle], list[str]] | None = None | ||
|
||
|
||
CHARGING_STATE_ON = { | ||
ChargingState.CHARGING, | ||
ChargingState.COMPLETE, | ||
ChargingState.FULLY_CHARGED, | ||
ChargingState.FINISHED_FULLY_CHARGED, | ||
ChargingState.FINISHED_NOT_FULL, | ||
ChargingState.TARGET_REACHED, | ||
} | ||
|
||
NUMBER_TYPES: list[BMWSwitchEntityDescription] = [ | ||
BMWSwitchEntityDescription( | ||
key="climate", | ||
name="Climate", | ||
is_available=lambda v: v.is_remote_climate_stop_enabled, | ||
value_fn=lambda v: v.climate.is_climate_on, | ||
remote_service_on=lambda v: v.remote_services.trigger_remote_air_conditioning(), | ||
remote_service_off=lambda v: v.remote_services.trigger_remote_air_conditioning_stop(), | ||
icon="mdi:fan", | ||
), | ||
BMWSwitchEntityDescription( | ||
key="charging", | ||
name="Charging", | ||
is_available=lambda v: v.is_remote_charge_stop_enabled, | ||
value_fn=lambda v: v.fuel_and_battery.charging_status in CHARGING_STATE_ON, | ||
remote_service_on=lambda v: v.remote_services.trigger_charge_start(), | ||
remote_service_off=lambda v: v.remote_services.trigger_charge_stop(), | ||
icon="mdi:ev-station", | ||
), | ||
] | ||
|
||
|
||
async def async_setup_entry( | ||
hass: HomeAssistant, | ||
config_entry: ConfigEntry, | ||
async_add_entities: AddEntitiesCallback, | ||
) -> None: | ||
"""Set up the MyBMW switch from config entry.""" | ||
coordinator: BMWDataUpdateCoordinator = hass.data[DOMAIN][config_entry.entry_id] | ||
|
||
entities: list[BMWSwitch] = [] | ||
|
||
for vehicle in coordinator.account.vehicles: | ||
if not coordinator.read_only: | ||
entities.extend( | ||
[ | ||
BMWSwitch(coordinator, vehicle, description) | ||
for description in NUMBER_TYPES | ||
if description.is_available(vehicle) | ||
] | ||
) | ||
async_add_entities(entities) | ||
|
||
|
||
class BMWSwitch(BMWBaseEntity, SwitchEntity): | ||
"""Representation of BMW Switch entity.""" | ||
|
||
entity_description: BMWSwitchEntityDescription | ||
|
||
def __init__( | ||
self, | ||
coordinator: BMWDataUpdateCoordinator, | ||
vehicle: MyBMWVehicle, | ||
description: BMWSwitchEntityDescription, | ||
) -> None: | ||
"""Initialize an BMW Switch.""" | ||
super().__init__(coordinator, vehicle) | ||
self.entity_description = description | ||
self._attr_unique_id = f"{vehicle.vin}-{description.key}" | ||
|
||
@property | ||
def is_on(self) -> bool: | ||
"""Return the entity value to represent the entity state.""" | ||
return self.entity_description.value_fn(self.vehicle) | ||
|
||
async def async_turn_on(self, **kwargs: Any) -> None: | ||
"""Turn the switch on.""" | ||
try: | ||
await self.entity_description.remote_service_on(self.vehicle) | ||
except MyBMWAPIError as ex: | ||
raise HomeAssistantError(ex) from ex | ||
|
||
self.coordinator.async_update_listeners() | ||
|
||
async def async_turn_off(self, **kwargs: Any) -> None: | ||
"""Turn the switch off.""" | ||
try: | ||
await self.entity_description.remote_service_off(self.vehicle) | ||
except MyBMWAPIError as ex: | ||
raise HomeAssistantError(ex) from ex | ||
|
||
self.coordinator.async_update_listeners() |