Google智能家居技能的操作:房间提示/主页图表

时间:2017-08-23 08:11:51

标签: actions-on-google home-automation

https://developers.google.com/actions/smarthome/create-app#actiondevicessync处的文档提到,对同步请求的JSON响应的roomHint字段可用于让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"
      }
    ]
  }
}

1 个答案:

答案 0 :(得分:1)

HomeGraph不会使用为roomHint提供的值来确定此设备所在的房间。