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"
}
]
}
}
答案 0 :(得分:1)
HomeGraph不会使用为roomHint提供的值来确定此设备所在的房间。