智慧型家用網路指南
action.devices.types.NETWORK
- 代表一組路由器節點或一個網狀網路 (由單一實體控制,而非個別裝置)。網路裝置可能會重新啟動、更新其軟體,而且有模式能處理服務品質 (QoS) 控制項和家長限制。裝置可以執行訪客網路等作業,並回報網路特定資訊,例如目前的網際網路處理速率。
這種類型表示裝置會取得網路圖示,以及一些相關的同義詞和別名。
裝置功能
請參閱對應的特性說明文件,瞭解服務應支援的屬性和狀態,以及如何建構 EXECUTE 和 QUERY 回應。
必修特色
這些特性和指令 (如果適用於您的裝置)。
推薦特色
視您的裝置而定,我們建議採用這類特性。 不過,您可以自由搭配所有可用特徵,並配合現有的產品功能進行配對。
品質規定
- 延遲時間:必須小於或等於 300 毫秒。
- 可靠性:必須大於或等於 97%。
範例裝置:簡易網路
本節包含代表上述裝置類型和特徵的意圖意圖酬載範例。如果您在實作中新增或移除特性,請配合這些異動修改回應。
同步處理回應範例
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.NETWORK", "traits": [ "action.devices.traits.Reboot", "action.devices.traits.NetworkControl" ], "name": { "name": "Simple network" }, "willReportState": true, "attributes": { "supportsEnablingNetworkProfile": true, "supportsDisablingNetworkProfile": true, "supportsNetworkDownloadSpeedTest": true, "supportsNetworkUploadSpeedTest": true, "networkProfiles": [ "kids" ] }, "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, "networkEnabled": true, "networkSettings": { "ssid": "home-network-123" } } } } }
EXECUTE 指令範例
重新啟動
如要進一步瞭解指令參數,請參閱
action.devices.traits.Reboot
參考資料。
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.Reboot" } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true } } ] } }
啟用停用網路設定檔
如要進一步瞭解指令參數,請參閱
action.devices.traits.NetworkControl
參考資料。
{ "requestId": "6894439706274654518", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.EnableDisableNetworkProfile", "params": { "profile": "kids", "enable": false } } ] } ] } } ] }
{ "requestId": "6894439706274654518", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "networkEnabled": true, "networkSettings": { "ssid": "home-network-123" } } } ] } }
測試網路速度
如要進一步瞭解指令參數,請參閱
action.devices.traits.NetworkControl
參考資料。
{ "requestId": "6894439706274654520", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TestNetworkSpeed", "params": { "testDownloadSpeed": true, "testUploadSpeed": true, "followUpToken": "123" } } ] } ] } } ] }
{ "requestId": "6894439706274654520", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true } } ] } }