Skip to content

Commit

Permalink
Add button platform to microBees (#111141)
Browse files Browse the repository at this point in the history
* add button platform to microBees

* use list comprehension for async_add_entities

* add a transaltion_key and fix list comprehension

* add panic button

* remove BUTTON_PRODUCT_IDS
  • Loading branch information
FedDam committed Feb 27, 2024
1 parent fc4b18b commit 1109aba
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ omit =
homeassistant/components/microbees/__init__.py
homeassistant/components/microbees/api.py
homeassistant/components/microbees/application_credentials.py
homeassistant/components/microbees/button.py
homeassistant/components/microbees/const.py
homeassistant/components/microbees/coordinator.py
homeassistant/components/microbees/entity.py
Expand Down
53 changes: 53 additions & 0 deletions homeassistant/components/microbees/button.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
"""Button integration microBees."""
from typing import Any

from homeassistant.components.button import ButtonEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback

from .const import DOMAIN
from .coordinator import MicroBeesUpdateCoordinator
from .entity import MicroBeesActuatorEntity

BUTTON_TRANSLATIONS = {51: "button_gate", 91: "button_panic"}


async def async_setup_entry(
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
"""Set up the microBees button platform."""
coordinator: MicroBeesUpdateCoordinator = hass.data[DOMAIN][
entry.entry_id
].coordinator
async_add_entities(
MBButton(coordinator, bee_id, button.id)
for bee_id, bee in coordinator.data.bees.items()
if bee.productID in BUTTON_TRANSLATIONS
for button in bee.actuators
)


class MBButton(MicroBeesActuatorEntity, ButtonEntity):
"""Representation of a microBees button."""

def __init__(
self,
coordinator: MicroBeesUpdateCoordinator,
bee_id: int,
actuator_id: int,
) -> None:
"""Initialize the microBees button."""
super().__init__(coordinator, bee_id, actuator_id)
self._attr_translation_key = BUTTON_TRANSLATIONS.get(self.bee.productID)

@property
def name(self) -> str:
"""Name of the switch."""
return self.actuator.name

async def async_press(self, **kwargs: Any) -> None:
"""Turn on the button."""
await self.coordinator.microbees.sendCommand(
self.actuator.id, self.actuator.configuration.actuator_timing * 1000
)
1 change: 1 addition & 0 deletions homeassistant/components/microbees/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
OAUTH2_AUTHORIZE = "https://dev.microbees.com/oauth/authorize"
OAUTH2_TOKEN = "https://dev.microbees.com/oauth/token"
PLATFORMS = [
Platform.BUTTON,
Platform.LIGHT,
Platform.SENSOR,
Platform.SWITCH,
Expand Down
8 changes: 8 additions & 0 deletions homeassistant/components/microbees/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
"socket_it": {
"default": "mdi:power-socket-it"
}
},
"button": {
"button_gate": {
"default": "mdi:gate"
},
"button_panic": {
"default": "mdi:alert-octagram"
}
}
}
}

0 comments on commit 1109aba

Please sign in to comment.