mirror of https://github.com/home-assistant/core
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
"""Support for Slide button."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from goslideapi.goslideapi import (
|
|
AuthenticationFailed,
|
|
ClientConnectionError,
|
|
ClientTimeoutError,
|
|
DigestAuthCalcError,
|
|
)
|
|
|
|
from homeassistant.components.button import ButtonEntity
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import SlideConfigEntry
|
|
from .const import DOMAIN
|
|
from .coordinator import SlideCoordinator
|
|
from .entity import SlideEntity
|
|
|
|
PARALLEL_UPDATES = 1
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: SlideConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up button for Slide platform."""
|
|
|
|
coordinator = entry.runtime_data
|
|
|
|
async_add_entities([SlideButton(coordinator)])
|
|
|
|
|
|
class SlideButton(SlideEntity, ButtonEntity):
|
|
"""Defines a Slide button."""
|
|
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
_attr_translation_key = "calibrate"
|
|
|
|
def __init__(self, coordinator: SlideCoordinator) -> None:
|
|
"""Initialize the slide button."""
|
|
super().__init__(coordinator)
|
|
self._attr_unique_id = f"{coordinator.data['mac']}-calibrate"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Send out a calibrate command."""
|
|
try:
|
|
await self.coordinator.slide.slide_calibrate(self.coordinator.host)
|
|
except (
|
|
ClientConnectionError,
|
|
AuthenticationFailed,
|
|
ClientTimeoutError,
|
|
DigestAuthCalcError,
|
|
) as ex:
|
|
raise HomeAssistantError(
|
|
translation_domain=DOMAIN,
|
|
translation_key="calibration_error",
|
|
) from ex
|