get_work_state
Retrieve the current working status of an Ecovacs robot vacuum by querying its nickname. Essential for monitoring cleaning progress and device activity.
Instructions
Query robot working status
Args: nickname: Robot nickname, used to find device
Returns: Dict: Dictionary containing robot working status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nickname | Yes | Robot nickname, used to find device |
Input Schema (JSON Schema)
{
"properties": {
"nickname": {
"description": "Robot nickname, used to find device",
"title": "Nickname",
"type": "string"
}
},
"required": [
"nickname"
],
"title": "get_work_stateArguments",
"type": "object"
}