スマートホーム サーモスタット ガイド
action.devices.types.THERMOSTAT
- サーモスタットは、設定ポイントとモードを備えた温度管理デバイスです。これにより、暖房やエアコン(モード)の設定(高/低など)がある暖房設備や AC ユニットが、温度目標から切り離されます。
このタイプのデバイスは、サーモスタット アイコン、関連する類義語、エイリアスを受け取ります。
このタイプのデバイスは温度を制御しますが、一部の暖房 / 冷房ユニット コントロールは異なります。温度コントロールは設定できません。デバイスの機能
サービスがサポートする属性や状態、EXECUTE レスポンスと QUERY レスポンスの構築方法など、実装の詳細については、対応するトレイトのドキュメントをご覧ください。
必要な特性
これらのトレイトとコマンドは、お使いのデバイスに必須です。
多くの場合、サーモスタット コマンドは EXECUTE
インテント内で連結されます。ユーザーが「暖房を 22 度に設定」と言うと、モードコマンドが生成され、その後に温度が設定されます。
品質要件
- レイテンシ: 700 ミリ秒以下
- 信頼性: 97% 以上を指定します。
デバイスの例: シンプルなサーモスタット
このセクションでは、上記のデバイスタイプとトレイトに基づいた、一般的な「サーモスタット」を表すインテント ペイロードの例について説明します。実装でトレイトを追加または削除する場合は、その変更を反映するようにレスポンスを変更します。
SYNC レスポンスの例
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.THERMOSTAT", "traits": [ "action.devices.traits.TemperatureSetting" ], "name": { "name": "Simple thermostat" }, "willReportState": true, "attributes": { "availableThermostatModes": [ "off", "heat", "cool", "heatcool", "on" ], "thermostatTemperatureRange": { "minThresholdCelsius": 15, "maxThresholdCelsius": 30 }, "thermostatTemperatureUnit": "F" }, "deviceInfo": { "manufacturer": "smart-home-inc", "model": "hs1234", "hwVersion": "3.2", "swVersion": "11.4" } } ] } }
QUERY レスポンスの例
{ "requestId": "6894439706274654514", "inputs": [ { "intent": "action.devices.QUERY", "payload": { "devices": [ { "id": "123" } ] } } ] }
{ "requestId": "6894439706274654514", "payload": { "devices": { "123": { "status": "SUCCESS", "online": true, "thermostatMode": "cool", "thermostatTemperatureSetpoint": 23, "thermostatTemperatureAmbient": 25.1, "thermostatHumidityAmbient": 45.3 } } } }
EXECUTE コマンドの例
ThermostatTemperatureSetpoint
コマンド パラメータの詳細については、
action.devices.traits.TemperatureSetting
リファレンスをご覧ください。
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.ThermostatTemperatureSetpoint", "params": { "thermostatTemperatureSetpoint": 22 } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "thermostatMode": "cool", "thermostatTemperatureSetpoint": 22, "thermostatTemperatureAmbient": 25.1 } } ] } }
ThermostatTemperatureSetRange
コマンド パラメータの詳細については、
action.devices.traits.TemperatureSetting
リファレンスをご覧ください。
{ "requestId": "6894439706274654518", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.ThermostatTemperatureSetRange", "params": { "thermostatTemperatureSetpointHigh": 26, "thermostatTemperatureSetpointLow": 22 } } ] } ] } } ] }
{ "requestId": "6894439706274654518", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "thermostatMode": "heatcool", "thermostatTemperatureSetpointHigh": 26, "thermostatTemperatureSetpointLow": 22, "thermostatTemperatureAmbient": 25.1 } } ] } }
ThermostatSetMode
コマンド パラメータの詳細については、
action.devices.traits.TemperatureSetting
リファレンスをご覧ください。
{ "requestId": "6894439706274654520", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.ThermostatSetMode", "params": { "thermostatMode": "heatcool" } } ] } ] } } ] }
{ "requestId": "6894439706274654520", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "thermostatMode": "heatcool", "thermostatTemperatureSetpointHigh": 26, "thermostatTemperatureSetpointLow": 22, "thermostatTemperatureAmbient": 25.1 } } ] } }
デバイスエラー
エラーと例外の全一覧をご覧ください。inHeatOrCool
- デバイスが明示的な暖房または冷房状態にあるため、Heat / Cool / Range コマンドが失敗しました。inHeatCool
- デバイスが暖房または冷房状態にあるため、Heat または Cool コマンドが失敗しました。lockedToRange
- デバイスは特定の温度範囲またはモードにロックされているので、要求された変更を行うことができません。rangeTooClose
- 暖房 / 冷房範囲の温度ポイントが互いに近すぎます。