mirror of
https://github.com/home-assistant/core.git
synced 2026-06-06 23:46:56 +01:00
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""Representation of a toggleButton."""
|
|
|
|
from homeassistant.components.button import ButtonEntity
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .const import ZWaveMePlatform
|
|
from .controller import ZWaveMeConfigEntry
|
|
from .entity import ZWaveMeEntity
|
|
|
|
DEVICE_NAME = ZWaveMePlatform.BUTTON
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ZWaveMeConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the number platform."""
|
|
|
|
@callback
|
|
def add_new_device(new_device):
|
|
async_add_entities([ZWaveMeButton(config_entry.runtime_data, new_device)])
|
|
|
|
config_entry.async_on_unload(
|
|
async_dispatcher_connect(
|
|
hass, f"ZWAVE_ME_NEW_{DEVICE_NAME.upper()}", add_new_device
|
|
)
|
|
)
|
|
|
|
|
|
class ZWaveMeButton(ZWaveMeEntity, ButtonEntity):
|
|
"""Representation of a ZWaveMe button."""
|
|
|
|
def press(self) -> None:
|
|
"""Turn the entity on."""
|
|
self.controller.zwave_api.send_command(self.device.id, "on")
|