我的设备(命名为卧室)设置为 26 并且处于凉爽模式。当我问我的谷歌主页“嘿谷歌,将卧室温度提高 1”时。我从谷歌主页收到的 JSON 发布在下面。根据此 JSON,将模式设置为加热并将温度设置为 26。
我 100% 确定它上周运行良好。它只向我发送 JSON 来设置温度。
"inputs": [{
"intent": "action.devices.EXECUTE",
"payload": {
"commands": [
{
"execution": [
{
"params": {
"thermostatMode": "heat"
},
"command": "action.devices.commands.ThermostatSetMode"
},
{
"params": {
"thermostatTemperatureSetpoint": 26
},
"command": "action.devices.commands.ThermostatTemperatureSetpoint"
}
],
"devices": [
{
"id": "bedroom"
}
]
}
]
}
}],
"requestId": "XXXXXXX"