Skip to content

Commit 8baa4f1

Browse files
committed
fix: Fixed issue with heat pump zones where changing hvac mode incorrectly set temperature (15 minutes dev time)
1 parent b6d2f2b commit 8baa4f1

File tree

1 file changed

+1
-1
lines changed
  • custom_components/octopus_energy/heat_pump

1 file changed

+1
-1
lines changed

custom_components/octopus_energy/heat_pump/zone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ async def async_set_hvac_mode(self, hvac_mode):
148148
self._attr_hvac_mode = hvac_mode
149149
self._attr_preset_mode = PRESET_NONE
150150
zone_mode = self.get_zone_mode()
151-
await self._client.async_set_heat_pump_zone_mode(self._account_id, self._heat_pump_id, self._zone.configuration.code, zone_mode, self._attr_target_temperature)
151+
await self._client.async_set_heat_pump_zone_mode(self._account_id, self._heat_pump_id, self._zone.configuration.code, zone_mode, None)
152152
except Exception as e:
153153
if self._is_mocked:
154154
_LOGGER.warning(f'Suppress async_set_hvac_mode error due to mocking mode: {e}')

0 commit comments

Comments
 (0)