set_cleaning
Control Ecovacs robot vacuum cleaning actions: start, resume, pause, or stop cleaning by specifying the robot nickname and desired action.
Instructions
Start robot cleaning
Args: nickname: Robot nickname, used to find device act: Cleaning action s-start cleaning, r-resume cleaning, p-pause cleaning, h-stop cleaning Returns: Dict: Dictionary containing execution results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
act | No | Cleaning action, s-start cleaning, r-resume cleaning, p-pause cleaning, h-stop cleaning | s |
nickname | No | Robot nickname, supports fuzzy matching |
Input Schema (JSON Schema)
{
"properties": {
"act": {
"default": "s",
"description": "Cleaning action, s-start cleaning, r-resume cleaning, p-pause cleaning, h-stop cleaning",
"title": "Act",
"type": "string"
},
"nickname": {
"default": "",
"description": "Robot nickname, supports fuzzy matching",
"title": "Nickname",
"type": "string"
}
},
"title": "set_cleaningArguments",
"type": "object"
}