robovac_pause
Pause the Eufy RoboVac cleaning cycle to temporarily stop vacuuming, allowing you to address obstacles or interruptions.
Instructions
Pause robovac cleaning
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:675-685 (handler)Handler implementation for the robovac_pause tool. Checks if RoboVac is initialized and calls the pause method on the RoboVac instance.case "robovac_pause": this.ensureRoboVacInitialized(); await this.robovac!.pause(); return { content: [ { type: "text", text: "RoboVac paused!", }, ], };
- src/server.ts:157-164 (registration)Tool registration in the listTools handler, defining name, description, and empty input schema for robovac_pause.{ name: "robovac_pause", description: "Pause robovac cleaning", inputSchema: { type: "object", properties: {}, }, },
- src/server.ts:160-163 (schema)Input schema for robovac_pause tool, which requires no parameters.inputSchema: { type: "object", properties: {}, },