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"
}
]
}
}
现在,HomeGraph 不使用 roomHint 值来确定此设备所在的房间。