forked from egnerfl/alfen_wallbox
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from leeyuentuen/button-entity
Button entity + cleanup codes
- Loading branch information
Showing
6 changed files
with
142 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
|
||
from dataclasses import dataclass | ||
import logging | ||
from typing import Final | ||
from .alfen import POST_HEADER_JSON, AlfenDevice | ||
from .entity import AlfenEntity | ||
|
||
from homeassistant.components.button import ButtonEntity, ButtonEntityDescription | ||
from homeassistant.config_entries import ConfigEntry | ||
from homeassistant.core import HomeAssistant | ||
from homeassistant.helpers.entity_platform import AddEntitiesCallback | ||
from .const import CMD, METHOD_POST, PARAM_COMMAND, COMMAND_REBOOT | ||
|
||
from . import DOMAIN as ALFEN_DOMAIN | ||
|
||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
@dataclass | ||
class AlfenButtonDescriptionMixin: | ||
"""Define an entity description mixin for button entities.""" | ||
|
||
method: str | ||
url_action: str | ||
json_action: str | ||
|
||
|
||
@dataclass | ||
class AlfenButtonDescription(ButtonEntityDescription, AlfenButtonDescriptionMixin): | ||
"""Class to describe an Alfen button entity.""" | ||
|
||
|
||
ALFEN_BUTTON_TYPES: Final[tuple[AlfenButtonDescription, ...]] = ( | ||
AlfenButtonDescription( | ||
key="reboot_wallbox", | ||
name="Reboot Wallbox", | ||
method=METHOD_POST, | ||
url_action=CMD, | ||
json_action={PARAM_COMMAND: COMMAND_REBOOT}, | ||
), | ||
) | ||
|
||
|
||
async def async_setup_entry( | ||
hass: HomeAssistant, | ||
entry: ConfigEntry, | ||
async_add_entities: AddEntitiesCallback, | ||
) -> None: | ||
"""Set up Alfen switch entities from a config entry.""" | ||
device = hass.data[ALFEN_DOMAIN][entry.entry_id] | ||
buttons = [AlfenButton(device, description) | ||
for description in ALFEN_BUTTON_TYPES] | ||
|
||
async_add_entities(buttons) | ||
|
||
|
||
class AlfenButton(AlfenEntity, ButtonEntity): | ||
"""Representation of a Alfen button entity.""" | ||
|
||
def __init__( | ||
self, | ||
device: AlfenDevice, | ||
description: AlfenButtonDescription, | ||
) -> None: | ||
"""Initialize the Alfen button entity.""" | ||
super().__init__(device) | ||
self._device = device | ||
self._attr_name = f"{device.name} {description.name}" | ||
self._attr_unique_id = f"{device.id}-{description.key}" | ||
self.entity_description = description | ||
|
||
async def async_press(self) -> None: | ||
"""Press the button.""" | ||
await self._device.login() | ||
response = await self._device.request( | ||
self.entity_description.method, | ||
POST_HEADER_JSON, | ||
self.entity_description.url_action, | ||
self.entity_description.json_action | ||
) | ||
await self._device.logout() | ||
_LOGGER.debug("Response: %s", response) |
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 |
---|---|---|
|
@@ -28,6 +28,8 @@ | |
CAT_TEMP = "temp" | ||
CAT_OCPP = "ocpp" | ||
|
||
COMMAND_REBOOT = "reboot" | ||
|
||
|
||
TIMEOUT = 60 | ||
|
||
|
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