Skip to content

Commit

Permalink
add fault strings
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Mar 3, 2024
1 parent 1a4d2e4 commit 17c645e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/evohomeasync2/schema/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,13 @@ class FanMode(StrEnum):


@verify(EnumCheck.UNIQUE)
class FaultType(StrEnum):
class FaultType(StrEnum): # NOTE: This list is incomplete
SYS_B_CL: Final = "BoilerCommunicationLost"
SYS_C_CL: Final = "ChValveCommunicationLost"
DHW_A_FL: Final = "DHWActuatorFailure"
# W_A_CL: Final = "DHWActuatorCommunicationLost" # extrapolated
DHW_S_CL: Final = "DHWSensorCommunicationLost"
DHW_S_FL: Final = "DHWSensorFailure"
DHW_S_LB: Final = "DHWSensorLowBattery" # extrapolated
GWY_X_CL: Final = "GatewayCommunicationLost"
# S_X_LB: Final = "TemperatureControlSystemLowBattery" # extrapolated
Expand Down

0 comments on commit 17c645e

Please sign in to comment.