智慧型住宅拖車指南
action.devices.types.MOP
- 與 mop 的互動可能包括開始、停止、暫停清潔、插入、查看目前的清理週期、定位拖把或調整各種模式。有些人可以協助清理家中的特定區域。
這種類型表示裝置會取得 Mop 圖示以及部分相關的同義詞和別名。
裝置功能
請參閱對應的特性說明文件,瞭解服務應支援的屬性和狀態,以及如何建構 EXECUTE 和 QUERY 回應。
必修特色
這些特性和指令 (如果適用於您的裝置)。
推薦特色
視您的裝置而定,我們建議採用這類特性。 不過,您可以自由搭配所有可用特徵,並配合現有的產品功能進行配對。
-
action.devices.traits.Dock
-
action.devices.traits.EnergyStorage
-
action.devices.traits.Locator
-
action.devices.traits.OnOff
-
action.devices.traits.RunCycle
品質規定
- 延遲時間:必須小於或等於 800 毫秒。
- 可靠性:必須大於或等於 97%。
範例裝置:簡單拖地機
本節包含代表上述裝置類型和特徵的常見意圖「酬載」的意圖酬載範例。如果您在實作中新增或移除特性,請配合這些異動修改回應。
同步處理回應範例
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.MOP", "traits": [ "action.devices.traits.Dock", "action.devices.traits.EnergyStorage", "action.devices.traits.StartStop" ], "name": { "name": "Simple mop" }, "willReportState": true, "attributes": { "queryOnlyEnergyStorage": true, "pausable": true }, "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, "isRunning": false, "isPaused": false, "isDocked": true, "descriptiveCapacityRemaining": "HIGH", "capacityRemaining": [ { "unit": "SECONDS", "rawValue": 36000 }, { "unit": "PERCENTAGE", "rawValue": 90 } ] } } } }
EXECUTE 指令範例
座架
如要進一步瞭解指令參數,請參閱
action.devices.traits.Dock
參考資料。
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.Dock" } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "isDocked": true } } ] } }
StartStop
如要進一步瞭解指令參數,請參閱
action.devices.traits.StartStop
參考資料。
{ "requestId": "6894439706274654518", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.StartStop", "params": { "start": true } } ] } ] } } ] }
{ "requestId": "6894439706274654518", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "isRunning": true, "isPaused": false } } ] } }