robovac_set_work_mode
Configure the cleaning mode for Eufy RoboVac, enabling users to select specific cleaning patterns such as AUTO, SMALL_ROOM, SPOT, EDGE, or NO_SWEEP.
Instructions
Set the cleaning mode of the robovac
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| mode | Yes | The work mode to set | 
Input Schema (JSON Schema)
{
  "properties": {
    "mode": {
      "description": "The work mode to set",
      "enum": [
        "AUTO",
        "SMALL_ROOM",
        "SPOT",
        "EDGE",
        "NO_SWEEP"
      ],
      "type": "string"
    }
  },
  "required": [
    "mode"
  ],
  "type": "object"
}