Simplify Alexa/Google for new climate turn_on/off (#25115)
This commit is contained in:
parent
8ec75cf883
commit
d37d1ce4ad
4 changed files with 30 additions and 37 deletions
|
@ -249,8 +249,8 @@ class ClimateCapabilities(AlexaEntity):
|
|||
def interfaces(self):
|
||||
"""Yield the supported interfaces."""
|
||||
# If we support two modes, one being off, we allow turning on too.
|
||||
if len([v for v in self.entity.attributes[climate.ATTR_HVAC_MODES]
|
||||
if v != climate.HVAC_MODE_OFF]) == 1:
|
||||
if (climate.HVAC_MODE_OFF in
|
||||
self.entity.attributes[climate.ATTR_HVAC_MODES]):
|
||||
yield AlexaPowerController(self.entity)
|
||||
|
||||
yield AlexaThermostatController(self.hass, self.entity)
|
||||
|
|
|
@ -580,16 +580,6 @@ class TemperatureSettingTrait(_Trait):
|
|||
|
||||
return modes
|
||||
|
||||
@property
|
||||
def climate_on_mode(self):
|
||||
"""Return the mode that should be considered on."""
|
||||
modes = [m for m in self.climate_google_modes if m != 'off']
|
||||
|
||||
if len(modes) == 1:
|
||||
return modes[0]
|
||||
|
||||
return None
|
||||
|
||||
def sync_attributes(self):
|
||||
"""Return temperature point and modes attributes for a sync request."""
|
||||
response = {}
|
||||
|
@ -605,8 +595,8 @@ class TemperatureSettingTrait(_Trait):
|
|||
|
||||
elif domain == climate.DOMAIN:
|
||||
modes = self.climate_google_modes
|
||||
on_mode = self.climate_on_mode
|
||||
if on_mode is not None:
|
||||
if 'off' in modes and any(mode in modes for mode
|
||||
in ('heatcool', 'heat', 'cool')):
|
||||
modes.append('on')
|
||||
response['availableThermostatModes'] = ','.join(modes)
|
||||
|
||||
|
@ -761,6 +751,26 @@ class TemperatureSettingTrait(_Trait):
|
|||
target_mode = params['thermostatMode']
|
||||
supported = self.state.attributes.get(ATTR_SUPPORTED_FEATURES)
|
||||
|
||||
if target_mode == 'on':
|
||||
await self.hass.services.async_call(
|
||||
climate.DOMAIN, SERVICE_TURN_ON,
|
||||
{
|
||||
ATTR_ENTITY_ID: self.state.entity_id
|
||||
},
|
||||
blocking=True, context=data.context
|
||||
)
|
||||
return
|
||||
|
||||
if target_mode == 'off':
|
||||
await self.hass.services.async_call(
|
||||
climate.DOMAIN, SERVICE_TURN_OFF,
|
||||
{
|
||||
ATTR_ENTITY_ID: self.state.entity_id
|
||||
},
|
||||
blocking=True, context=data.context
|
||||
)
|
||||
return
|
||||
|
||||
if target_mode in self.google_to_preset:
|
||||
await self.hass.services.async_call(
|
||||
climate.DOMAIN, climate.SERVICE_SET_PRESET_MODE,
|
||||
|
@ -773,22 +783,6 @@ class TemperatureSettingTrait(_Trait):
|
|||
)
|
||||
return
|
||||
|
||||
if target_mode == 'on':
|
||||
# When targetting 'on', we're going to try best effort.
|
||||
modes = [m for m in self.climate_google_modes
|
||||
if m != climate.HVAC_MODE_OFF]
|
||||
|
||||
if len(modes) == 1:
|
||||
target_mode = modes[0]
|
||||
elif 'auto' in modes:
|
||||
target_mode = 'auto'
|
||||
elif 'heatcool' in modes:
|
||||
target_mode = 'heatcool'
|
||||
else:
|
||||
raise SmartHomeError(
|
||||
ERR_FUNCTION_NOT_SUPPORTED,
|
||||
"Unable to translate 'on' to a HVAC mode.")
|
||||
|
||||
await self.hass.services.async_call(
|
||||
climate.DOMAIN, climate.SERVICE_SET_HVAC_MODE, {
|
||||
ATTR_ENTITY_ID: self.state.entity_id,
|
||||
|
|
|
@ -855,6 +855,7 @@ async def test_thermostat(hass):
|
|||
|
||||
assert_endpoint_capabilities(
|
||||
appliance,
|
||||
'Alexa.PowerController',
|
||||
'Alexa.ThermostatController',
|
||||
'Alexa.TemperatureSensor',
|
||||
'Alexa.EndpointHealth',
|
||||
|
|
|
@ -627,24 +627,22 @@ async def test_temperature_setting_climate_onoff(hass):
|
|||
climate.ATTR_MAX_TEMP: None,
|
||||
}), BASIC_CONFIG)
|
||||
assert trt.sync_attributes() == {
|
||||
'availableThermostatModes': 'off,cool,heat,heatcool',
|
||||
'availableThermostatModes': 'off,cool,heat,heatcool,on',
|
||||
'thermostatTemperatureUnit': 'F',
|
||||
}
|
||||
assert trt.can_execute(trait.COMMAND_THERMOSTAT_SET_MODE, {})
|
||||
|
||||
calls = async_mock_service(
|
||||
hass, climate.DOMAIN, climate.SERVICE_SET_HVAC_MODE)
|
||||
calls = async_mock_service(hass, climate.DOMAIN, SERVICE_TURN_ON)
|
||||
await trt.execute(trait.COMMAND_THERMOSTAT_SET_MODE, BASIC_DATA, {
|
||||
'thermostatMode': 'on',
|
||||
}, {})
|
||||
assert len(calls) == 1
|
||||
assert calls[0].data[climate.ATTR_HVAC_MODE] == climate.HVAC_MODE_HEAT_COOL
|
||||
|
||||
calls = async_mock_service(hass, climate.DOMAIN, SERVICE_TURN_OFF)
|
||||
await trt.execute(trait.COMMAND_THERMOSTAT_SET_MODE, BASIC_DATA, {
|
||||
'thermostatMode': 'off',
|
||||
}, {})
|
||||
assert len(calls) == 2
|
||||
assert calls[1].data[climate.ATTR_HVAC_MODE] == climate.HVAC_MODE_OFF
|
||||
assert len(calls) == 1
|
||||
|
||||
|
||||
async def test_temperature_setting_climate_range(hass):
|
||||
|
@ -671,7 +669,7 @@ async def test_temperature_setting_climate_range(hass):
|
|||
climate.ATTR_MAX_TEMP: 80
|
||||
}), BASIC_CONFIG)
|
||||
assert trt.sync_attributes() == {
|
||||
'availableThermostatModes': 'off,cool,heat,auto',
|
||||
'availableThermostatModes': 'off,cool,heat,auto,on',
|
||||
'thermostatTemperatureUnit': 'F',
|
||||
}
|
||||
assert trt.query_attributes() == {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue