Add Cover to Z-Wave.Me integration (#68233)
* Cover integration * isort fix * Update homeassistant/components/zwave_me/cover.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Update cover.py * Update cover.py * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * coveragerc for cover * Fix position range * Clean up Co-authored-by: Dmitry Vlasov <kerbalspacema@gmail.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
This commit is contained in:
parent
994ea04c85
commit
972afc5cea
6 changed files with 78 additions and 3 deletions
|
@ -1469,6 +1469,7 @@ omit =
|
||||||
homeassistant/components/zwave_me/__init__.py
|
homeassistant/components/zwave_me/__init__.py
|
||||||
homeassistant/components/zwave_me/binary_sensor.py
|
homeassistant/components/zwave_me/binary_sensor.py
|
||||||
homeassistant/components/zwave_me/button.py
|
homeassistant/components/zwave_me/button.py
|
||||||
|
homeassistant/components/zwave_me/cover.py
|
||||||
homeassistant/components/zwave_me/climate.py
|
homeassistant/components/zwave_me/climate.py
|
||||||
homeassistant/components/zwave_me/helpers.py
|
homeassistant/components/zwave_me/helpers.py
|
||||||
homeassistant/components/zwave_me/light.py
|
homeassistant/components/zwave_me/light.py
|
||||||
|
|
|
@ -12,6 +12,7 @@ class ZWaveMePlatform(StrEnum):
|
||||||
BINARY_SENSOR = "sensorBinary"
|
BINARY_SENSOR = "sensorBinary"
|
||||||
BUTTON = "toggleButton"
|
BUTTON = "toggleButton"
|
||||||
CLIMATE = "thermostat"
|
CLIMATE = "thermostat"
|
||||||
|
COVER = "motor"
|
||||||
LOCK = "doorlock"
|
LOCK = "doorlock"
|
||||||
NUMBER = "switchMultilevel"
|
NUMBER = "switchMultilevel"
|
||||||
SWITCH = "switchBinary"
|
SWITCH = "switchBinary"
|
||||||
|
@ -25,6 +26,7 @@ PLATFORMS = [
|
||||||
Platform.BINARY_SENSOR,
|
Platform.BINARY_SENSOR,
|
||||||
Platform.BUTTON,
|
Platform.BUTTON,
|
||||||
Platform.CLIMATE,
|
Platform.CLIMATE,
|
||||||
|
Platform.COVER,
|
||||||
Platform.LIGHT,
|
Platform.LIGHT,
|
||||||
Platform.LOCK,
|
Platform.LOCK,
|
||||||
Platform.NUMBER,
|
Platform.NUMBER,
|
||||||
|
|
72
homeassistant/components/zwave_me/cover.py
Normal file
72
homeassistant/components/zwave_me/cover.py
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
"""Representation of a cover."""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from homeassistant.components.cover import (
|
||||||
|
ATTR_POSITION,
|
||||||
|
SUPPORT_CLOSE,
|
||||||
|
SUPPORT_OPEN,
|
||||||
|
SUPPORT_SET_POSITION,
|
||||||
|
CoverEntity,
|
||||||
|
)
|
||||||
|
from homeassistant.core import callback
|
||||||
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
||||||
|
|
||||||
|
from . import ZWaveMeEntity
|
||||||
|
from .const import DOMAIN, ZWaveMePlatform
|
||||||
|
|
||||||
|
DEVICE_NAME = ZWaveMePlatform.COVER
|
||||||
|
|
||||||
|
|
||||||
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
||||||
|
"""Set up the cover platform."""
|
||||||
|
|
||||||
|
@callback
|
||||||
|
def add_new_device(new_device):
|
||||||
|
controller = hass.data[DOMAIN][config_entry.entry_id]
|
||||||
|
cover = ZWaveMeCover(controller, new_device)
|
||||||
|
|
||||||
|
async_add_entities(
|
||||||
|
[
|
||||||
|
cover,
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
config_entry.async_on_unload(
|
||||||
|
async_dispatcher_connect(
|
||||||
|
hass, f"ZWAVE_ME_NEW_{DEVICE_NAME.upper()}", add_new_device
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class ZWaveMeCover(ZWaveMeEntity, CoverEntity):
|
||||||
|
"""Representation of a ZWaveMe Multilevel Cover."""
|
||||||
|
|
||||||
|
def close_cover(self, **kwargs):
|
||||||
|
"""Close cover."""
|
||||||
|
self.controller.zwave_api.send_command(self.device.id, "exact?level=0")
|
||||||
|
|
||||||
|
def open_cover(self, **kwargs):
|
||||||
|
"""Open cover."""
|
||||||
|
self.controller.zwave_api.send_command(self.device.id, "exact?level=99")
|
||||||
|
|
||||||
|
def set_cover_position(self, **kwargs: Any) -> None:
|
||||||
|
"""Update the current value."""
|
||||||
|
value = kwargs[ATTR_POSITION]
|
||||||
|
self.controller.zwave_api.send_command(
|
||||||
|
self.device.id, f"exact?level={str(min(value, 99))}"
|
||||||
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def current_cover_position(self) -> int | None:
|
||||||
|
"""Return current position of cover.
|
||||||
|
|
||||||
|
None is unknown, 0 is closed, 100 is fully open.
|
||||||
|
"""
|
||||||
|
return self.device.level
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_features(self) -> int:
|
||||||
|
"""Return the supported features."""
|
||||||
|
return SUPPORT_OPEN | SUPPORT_CLOSE | SUPPORT_SET_POSITION
|
|
@ -4,7 +4,7 @@
|
||||||
"documentation": "https://www.home-assistant.io/integrations/zwave_me",
|
"documentation": "https://www.home-assistant.io/integrations/zwave_me",
|
||||||
"iot_class": "local_push",
|
"iot_class": "local_push",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"zwave_me_ws==0.2.2",
|
"zwave_me_ws==0.2.3",
|
||||||
"url-normalize==1.4.1"
|
"url-normalize==1.4.1"
|
||||||
],
|
],
|
||||||
"after_dependencies": ["zeroconf"],
|
"after_dependencies": ["zeroconf"],
|
||||||
|
|
|
@ -2497,4 +2497,4 @@ zm-py==0.5.2
|
||||||
zwave-js-server-python==0.35.2
|
zwave-js-server-python==0.35.2
|
||||||
|
|
||||||
# homeassistant.components.zwave_me
|
# homeassistant.components.zwave_me
|
||||||
zwave_me_ws==0.2.2
|
zwave_me_ws==0.2.3
|
||||||
|
|
|
@ -1599,4 +1599,4 @@ zigpy==0.43.0
|
||||||
zwave-js-server-python==0.35.2
|
zwave-js-server-python==0.35.2
|
||||||
|
|
||||||
# homeassistant.components.zwave_me
|
# homeassistant.components.zwave_me
|
||||||
zwave_me_ws==0.2.2
|
zwave_me_ws==0.2.3
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue