查询设备当前状态

更新时间:2023-07-06 08:28:01下载pdf

本文介绍查询设备当前状态的 API。

接口描述

查询设备当前状态,目前只支持红外空调设备。

接口地址

GET: /v2.0/iot-03/automations/infrared/ac/{device_id}/status

请求参数

参数名类型参数位置是否必填说明
device_idStringuritrue设备 ID

返回参数

参数名类型说明
resultAcStatusExtsRes返回结果

result 说明

参数名类型说明
power_openBoolean空调是否开启。
  • true:开
  • false:关
power_nameString空调开启状态名称
modeInteger模式
mode_nameString模式名称
temperatureInteger温度
temperature_nameString温度名称
fanInteger风扇
fan_nameString风速名称

请求示例

GET: /v2.0/iot-03/automations/infrared/ac/6c819d650100a35f9e****/status

返回示例

{
    "result": {
        "fan_name": "风速低",
        "power_name": "开机",
        "power_open": true,
        "mode": 1,
        "temperature_name": "温度22℃",
        "fan": 1,
        "temperature": 22,
        "mode_name": "模式制热"
    },
    "t": 1635734252399,
    "success": true
}

错误码

参考 错误码