Skip to content

Commit

Permalink
Fix again wake-up issue for some wash devices (issue #504) (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
ollo69 authored May 19, 2023
1 parent 0a476bf commit debec36
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,10 @@ def _set_remote_start_opt(self, res):
self._status.device_features.get(WashDeviceFeatures.STANDBY)
== StateOptions.ON
)
if not self._stand_by:
standby_enable = self.model_info.config_value("standbyEnable")
if standby_enable and not self._should_poll:
self._stand_by = not self._status.is_on
remote_start = self._status.device_features.get(WashDeviceFeatures.REMOTESTART)
if remote_start == StateOptions.ON:
if self._remote_start_status is None:
Expand Down

0 comments on commit debec36

Please sign in to comment.