Fix broken maxcube component (#42674)

This commit is contained in:
Andreas Billmeier 2020-11-04 10:17:40 +01:00 committed by GitHub
parent 6b57ad9f28
commit 898f50386f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View file

@ -16,7 +16,7 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
name = f"{cube.room_by_id(device.room_id).name} {device.name}"
# Only add Window Shutters
if cube.is_windowshutter(device):
if device.is_windowshutter():
devices.append(MaxCubeShutter(handler, name, device.rf_address))
if devices:

View file

@ -70,7 +70,7 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
for device in cube.devices:
name = f"{cube.room_by_id(device.room_id).name} {device.name}"
if cube.is_thermostat(device) or cube.is_wallthermostat(device):
if device.is_thermostat() or device.is_wallthermostat():
devices.append(MaxCubeClimate(handler, name, device.rf_address))
if devices:
@ -180,11 +180,11 @@ class MaxCubeClimate(ClimateEntity):
device = cube.device_by_rf(self._rf_address)
valve = 0
if cube.is_thermostat(device):
if device.is_thermostat():
valve = device.valve_position
elif cube.is_wallthermostat(device):
elif device.is_wallthermostat():
for device in cube.devices_by_room(cube.room_by_id(device.room_id)):
if cube.is_thermostat(device) and device.valve_position > 0:
if device.is_thermostat() and device.valve_position > 0:
valve = device.valve_position
break
else:
@ -287,7 +287,7 @@ class MaxCubeClimate(ClimateEntity):
cube = self._cubehandle.cube
device = cube.device_by_rf(self._rf_address)
if not cube.is_thermostat(device):
if not device.is_thermostat():
return {}
return {ATTR_VALVE_POSITION: device.valve_position}