0

https://developers.google.com/actions/smarthome/create-app#actiondevicessync上的文档提到,roomHint同步请求的 JSON 响应字段可用于让 Google 自动将设备分配到正确的房间。

但是,无论我在该字段中返回什么,用户仍然必须手动将每个设备分配到一个房间,我无法让 Google 使用该roomHint字段自动识别正确的房间

这是一个示例响应:

{
  "requestId": "500166151965294748",
  "payload": {
    "devices": [
      {
        "id": "9",
        "type": "action.devices.types.LIGHT",
        "traits": [
          "action.devices.traits.OnOff"
        ],
        "name": {
          "name": "Light"
        },
        "willReportState": false,
        "roomHint": "Attic"
      }
    ]
  }
}
4

1 回答 1

1

目前,HomeGraph 不使用为 roomHint 提供值来确定该设备所在的房间。

于 2017-09-22T18:27:40.593 回答