Skip to content

Commit

Permalink
Merge pull request #1323 from LeoCal/master
Browse files Browse the repository at this point in the history
Fix failing climate.turn_on issue introduced in version 1.5.0-beta6
  • Loading branch information
KartoffelToby committed Mar 24, 2024
2 parents 5a45e87 + df0071c commit 6a349d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/better_thermostat/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ async def async_turn_off(self) -> None:
await self.async_set_hvac_mode(HVACMode.OFF)

async def async_turn_on(self) -> None:
await self.async_set_hvac_mode(HVACMode.HEATING)
await self.async_set_hvac_mode(HVACMode.HEAT)

@property
def min_temp(self):
Expand Down

0 comments on commit 6a349d9

Please sign in to comment.