Skip to content

Commit

Permalink
Heating pump status (#21)
Browse files Browse the repository at this point in the history
* added support for heatpump status
  • Loading branch information
fabiopellegrin authored Apr 14, 2023
1 parent fd0d3d3 commit c8099a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ariston/galevo_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ def get_ch_flow_temp_unit(self) -> str:
def get_is_flame_on_value(self) -> bool:
"""Get is flame on value"""
return self._get_item_by_id(DeviceProperties.IS_FLAME_ON, PropertyType.VALUE)

def get_is_heating_pump_on_value(self) -> bool:
"""Get is heating pump on value"""
return self._get_item_by_id(DeviceProperties.IS_HEATING_PUMP_ON, PropertyType.VALUE)

def get_holiday_mode_value(self) -> bool:
"""Get holiday mode on value"""
Expand Down

0 comments on commit c8099a8

Please sign in to comment.