get_robot_status_smart
Retrieve real-time status information for GS cleaning robots by providing the serial number, automatically selecting the correct API version based on robot series.
Instructions
智能获取机器人状态。
自动根据机器人系列选择V1 (M-line) 或V2 (S-line) API。
Args:
serial_number: 机器人序列号
Returns:
机器人状态信息字典
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| serial_number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"serial_number": {
"title": "Serial Number",
"type": "string"
}
},
"required": [
"serial_number"
],
"type": "object"
}