Skip to content

Commit

Permalink
hvac: add missing auto setpoint
Browse files Browse the repository at this point in the history
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
  • Loading branch information
Noltari committed Oct 22, 2024
1 parent c98bbaf commit 308a255
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions aioairzone_cloud/hvac.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
API_RANGE_SP_MIN_STOP_AIR,
API_RANGE_SP_MIN_VENT_AIR,
API_RETURN_TEMP,
API_SP_AIR_AUTO,
API_SP_AIR_COOL,
API_SP_AIR_DRY,
API_SP_AIR_HEAT,
Expand Down Expand Up @@ -943,6 +944,9 @@ def update_data(self, update: EntityUpdate) -> None:

self.speeds = speeds

sp_air_auto = parse_float(data.get(API_SP_AIR_AUTO, {}).get(API_CELSIUS))
if sp_air_auto is not None:
self.temp_set_auto_air = sp_air_auto
sp_air_cool = parse_float(data.get(API_SP_AIR_COOL, {}).get(API_CELSIUS))
if sp_air_cool is not None:
self.temp_set_cool_air = sp_air_cool
Expand Down

0 comments on commit 308a255

Please sign in to comment.