42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
"""Support for WLED button."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.button import ButtonDeviceClass, ButtonEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import WLEDDataUpdateCoordinator
|
|
from .helpers import wled_exception_handler
|
|
from .models import WLEDEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up WLED button based on a config entry."""
|
|
coordinator: WLEDDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
async_add_entities([WLEDRestartButton(coordinator)])
|
|
|
|
|
|
class WLEDRestartButton(WLEDEntity, ButtonEntity):
|
|
"""Defines a WLED restart button."""
|
|
|
|
_attr_device_class = ButtonDeviceClass.RESTART
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
|
|
def __init__(self, coordinator: WLEDDataUpdateCoordinator) -> None:
|
|
"""Initialize the button entity."""
|
|
super().__init__(coordinator=coordinator)
|
|
self._attr_name = f"{coordinator.data.info.name} Restart"
|
|
self._attr_unique_id = f"{coordinator.data.info.mac_address}_restart"
|
|
|
|
@wled_exception_handler
|
|
async def async_press(self) -> None:
|
|
"""Send out a restart command."""
|
|
await self.coordinator.wled.reset()
|