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

Actions on Google Smart Home Skill: Room Hint / Home Graph

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

然而,无论我return在该字段中做什么,用户仍然必须手动将每台设备分配到一个房间,我无法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"
      }
    ]
  }
}

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