File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -302,8 +302,8 @@ class SenseStatistics:
302302
303303 temperature : float | None = None
304304 humidity : float | None = None
305- temperature_state : bool | None = None
306- humidity_state : bool | None = None
305+ temperature_hysteresis_state : bool | None = None
306+ humidity_hysteresis_state : bool | None = None
307307
308308
309309class PlugwiseNode (Protocol ):
Original file line number Diff line number Diff line change @@ -592,9 +592,9 @@ async def _hysteresis_state_update(
592592 switch_state ,
593593 )
594594 if switch_group == 1 :
595- self ._sense_statistics .humidity_state = switch_state
595+ self ._sense_statistics .humidity_hysteresis_state = switch_state
596596 elif switch_group == 2 :
597- self ._sense_statistics .temperature_state = switch_state
597+ self ._sense_statistics .temperature_hysteresis_state = switch_state
598598 else :
599599 _LOGGER .debug (
600600 "Ignoring unknown switch_group %s for %s" , switch_group , self .name
You can’t perform that action at this time.
0 commit comments