Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions custom_components/robovac/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,12 +873,6 @@ async def async_return_to_base(self, **kwargs: Any) -> None:
self.get_dps_code("RETURN_HOME"): self.vacuum.getRoboVacCommandValue(RobovacCommand.RETURN_HOME, "return")
}

# For models with boolean START_PAUSE (e.g. T2128, T2276), DPS 2 is the
# execution trigger — without it, the device ACKs but doesn't physically act.
start_value = self.vacuum.getRoboVacCommandValue(RobovacCommand.START_PAUSE, "start")
if start_value != "start":
payload[self.get_dps_code("START_PAUSE")] = start_value

await self.vacuum.async_set(payload)

async def async_start(self, **kwargs: Any) -> None:
Expand Down
Loading