0

我的设备(命名为卧室)设置为 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"
4

1 回答 1

0

发送执行的方式可能发生了一些变化。如果您想提高温度,并且模式是“凉爽”,那么恒温器应该进入“加热”模式是有意义的。

于 2017-11-09T19:22:59.977 回答