* Add mysensors notify platform * Make add_devices optional in platform callback function. * Use new argument structure for all existing mysensors platforms. * Add notify platform. * Update mysensors gateway. * Refactor notify setup * Enable discovery of notify platforms. * Update and add tests for notify component and some platforms. * Continue setup of notify platforms if a platform fails setup. * Remove notify tests that check platform config. These tests are not needed when config validation is used. * Add config validation to APNS notify platform. * Use discovery to set up mysensors notify platform. * Add discovery_info to get_service and update tests * Add discovery_info as keyword argument to the get_service function signature and update all notify platforms. * Update existing notify tests to check config validation using test helper. * Add removed tests back in that checked config in apns, command_line and file platforms, but use config validation test helper to verify config. * Add a test for notify file to increase coverage. * Fix some PEP issues. * Fix comments and use more constants * Move apns notify service under notify domain
108 lines
3.7 KiB
Python
108 lines
3.7 KiB
Python
"""
|
|
Support for MySensors covers.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/cover.mysensors/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.components import mysensors
|
|
from homeassistant.components.cover import CoverDevice, ATTR_POSITION
|
|
from homeassistant.const import STATE_ON, STATE_OFF
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
DEPENDENCIES = []
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup the mysensors platform for covers."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
gateways = hass.data.get(mysensors.MYSENSORS_GATEWAYS)
|
|
if not gateways:
|
|
return
|
|
|
|
for gateway in gateways:
|
|
pres = gateway.const.Presentation
|
|
set_req = gateway.const.SetReq
|
|
map_sv_types = {
|
|
pres.S_COVER: [set_req.V_DIMMER, set_req.V_LIGHT],
|
|
}
|
|
if float(gateway.protocol_version) >= 1.5:
|
|
map_sv_types.update({
|
|
pres.S_COVER: [set_req.V_PERCENTAGE, set_req.V_STATUS],
|
|
})
|
|
devices = {}
|
|
gateway.platform_callbacks.append(mysensors.pf_callback_factory(
|
|
map_sv_types, devices, MySensorsCover, add_devices))
|
|
|
|
|
|
class MySensorsCover(mysensors.MySensorsDeviceEntity, CoverDevice):
|
|
"""Representation of the value of a MySensors Cover child node."""
|
|
|
|
@property
|
|
def assumed_state(self):
|
|
"""Return True if unable to access real state of entity."""
|
|
return self.gateway.optimistic
|
|
|
|
@property
|
|
def is_closed(self):
|
|
"""Return True if cover is closed."""
|
|
set_req = self.gateway.const.SetReq
|
|
if set_req.V_DIMMER in self._values:
|
|
return self._values.get(set_req.V_DIMMER) == 0
|
|
else:
|
|
return self._values.get(set_req.V_LIGHT) == STATE_OFF
|
|
|
|
@property
|
|
def current_cover_position(self):
|
|
"""Return current position of cover.
|
|
|
|
None is unknown, 0 is closed, 100 is fully open.
|
|
"""
|
|
set_req = self.gateway.const.SetReq
|
|
return self._values.get(set_req.V_DIMMER)
|
|
|
|
def open_cover(self, **kwargs):
|
|
"""Move the cover up."""
|
|
set_req = self.gateway.const.SetReq
|
|
self.gateway.set_child_value(
|
|
self.node_id, self.child_id, set_req.V_UP, 1)
|
|
if self.gateway.optimistic:
|
|
# Optimistically assume that cover has changed state.
|
|
if set_req.V_DIMMER in self._values:
|
|
self._values[set_req.V_DIMMER] = 100
|
|
else:
|
|
self._values[set_req.V_LIGHT] = STATE_ON
|
|
self.update_ha_state()
|
|
|
|
def close_cover(self, **kwargs):
|
|
"""Move the cover down."""
|
|
set_req = self.gateway.const.SetReq
|
|
self.gateway.set_child_value(
|
|
self.node_id, self.child_id, set_req.V_DOWN, 1)
|
|
if self.gateway.optimistic:
|
|
# Optimistically assume that cover has changed state.
|
|
if set_req.V_DIMMER in self._values:
|
|
self._values[set_req.V_DIMMER] = 0
|
|
else:
|
|
self._values[set_req.V_LIGHT] = STATE_OFF
|
|
self.update_ha_state()
|
|
|
|
def set_cover_position(self, **kwargs):
|
|
"""Move the cover to a specific position."""
|
|
position = kwargs.get(ATTR_POSITION)
|
|
set_req = self.gateway.const.SetReq
|
|
self.gateway.set_child_value(
|
|
self.node_id, self.child_id, set_req.V_DIMMER, position)
|
|
if self.gateway.optimistic:
|
|
# Optimistically assume that cover has changed state.
|
|
self._values[set_req.V_DIMMER] = position
|
|
self.update_ha_state()
|
|
|
|
def stop_cover(self, **kwargs):
|
|
"""Stop the device."""
|
|
set_req = self.gateway.const.SetReq
|
|
self.gateway.set_child_value(
|
|
self.node_id, self.child_id, set_req.V_STOP, 1)
|