* feat: add cover to ozw * fix: imports * fix: formatting * fix: improve code regarding comments * add: cover tests * fix: add position converting tests * fix: convert cover position form zwave value * fix: improve naming * fix: increase coverage
76 lines
2.2 KiB
Python
76 lines
2.2 KiB
Python
"""Support for Z-Wave cover devices."""
|
|
import logging
|
|
|
|
from homeassistant.components.cover import (
|
|
ATTR_POSITION,
|
|
DOMAIN as COVER_DOMAIN,
|
|
SUPPORT_CLOSE,
|
|
SUPPORT_OPEN,
|
|
SUPPORT_SET_POSITION,
|
|
CoverEntity,
|
|
)
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
from .const import DATA_UNSUBSCRIBE, DOMAIN
|
|
from .entity import ZWaveDeviceEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
SUPPORTED_FEATURES_POSITION = SUPPORT_OPEN | SUPPORT_CLOSE | SUPPORT_SET_POSITION
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up Z-Wave Cover from Config Entry."""
|
|
|
|
@callback
|
|
def async_add_cover(values):
|
|
"""Add Z-Wave Cover."""
|
|
|
|
async_add_entities([ZWaveCoverEntity(values)])
|
|
|
|
hass.data[DOMAIN][config_entry.entry_id][DATA_UNSUBSCRIBE].append(
|
|
async_dispatcher_connect(hass, f"{DOMAIN}_new_{COVER_DOMAIN}", async_add_cover)
|
|
)
|
|
|
|
|
|
def percent_to_zwave_position(value):
|
|
"""Convert position in 0-100 scale to 0-99 scale.
|
|
|
|
`value` -- (int) Position byte value from 0-100.
|
|
"""
|
|
if value > 0:
|
|
return max(1, round((value / 100) * 99))
|
|
return 0
|
|
|
|
|
|
class ZWaveCoverEntity(ZWaveDeviceEntity, CoverEntity):
|
|
"""Representation of a Z-Wave Cover device."""
|
|
|
|
@property
|
|
def supported_features(self):
|
|
"""Flag supported features."""
|
|
return SUPPORTED_FEATURES_POSITION
|
|
|
|
@property
|
|
def is_closed(self):
|
|
"""Return true if cover is closed."""
|
|
return self.values.primary.value == 0
|
|
|
|
@property
|
|
def current_cover_position(self):
|
|
"""Return the current position of cover where 0 means closed and 100 is fully open."""
|
|
return round((self.values.primary.value / 99) * 100)
|
|
|
|
async def async_set_cover_position(self, **kwargs):
|
|
"""Move the cover to a specific position."""
|
|
self.values.primary.send_value(percent_to_zwave_position(kwargs[ATTR_POSITION]))
|
|
|
|
async def async_open_cover(self, **kwargs):
|
|
"""Open the cover."""
|
|
self.values.primary.send_value(99)
|
|
|
|
async def async_close_cover(self, **kwargs):
|
|
"""Close cover."""
|
|
self.values.primary.send_value(0)
|