Skip to content

Commit

Permalink
EvoLydosDevice anti-legionella cycle (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
fustom authored Feb 28, 2024
1 parent e46b054 commit f5787b4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ariston/evo_lydos_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@ def av_shw_value(self) -> Optional[int]:
def is_heating(self) -> Optional[bool]:
"""Get is the water heater heating"""
return self.data.get(EvoLydosDeviceProperties.HEAT_REQ, None)

@property
def is_antileg(self) -> Optional[bool]:
"""Is anti-legionella cycle running"""
return self.data.get(EvoLydosDeviceProperties.ANTI_LEG, None)

0 comments on commit f5787b4

Please sign in to comment.