คู่มือเครือข่ายสมาร์ทโฮม
action.devices.types.NETWORK - แสดงถึงกลุ่มโหนดเราเตอร์หรือเครือข่ายที่ทำงานร่วมกันซึ่งควบคุมเป็นเอนทิตีเดียวแทนที่จะเป็นอุปกรณ์แต่ละเครื่อง อุปกรณ์เครือข่ายอาจรีบูต อัปเดตซอฟต์แวร์ และมีโหมดเพื่อจัดการการควบคุมคุณภาพของบริการ (QoS) และการจำกัดโดยผู้ปกครอง
อุปกรณ์สามารถดำเนินการต่างๆ เช่น เปิดใช้เครือข่ายสำหรับผู้มาเยือน และรายงานข้อมูลเฉพาะเครือข่าย เช่น อัตราการรับส่งข้อมูลอินเทอร์เน็ตปัจจุบัน
ประเภทนี้ระบุว่าอุปกรณ์จะได้รับไอคอนเครือข่ายและคำพ้องความหมายและนามแฝงที่เกี่ยวข้อง
ความสามารถของอุปกรณ์
โปรดดูรายละเอียดการใช้งานในเอกสารประกอบลักษณะที่เกี่ยวข้อง เช่น แอตทริบิวต์และสถานะที่บริการของคุณควรสนับสนุน รวมถึงวิธีสร้างการตอบกลับ EXECUTE และ QUERY
ลักษณะที่จำเป็น
คุณต้องระบุลักษณะและคำสั่งเหล่านี้หากอุปกรณ์ของคุณรองรับ
หากอุปกรณ์ไม่รองรับลักษณะเหล่านี้ ให้ป้อนรหัสข้อผิดพลาดของ
functionNotSupported ในการตอบกลับ QUERY หรือ EXECUTE ดูข้อมูลเพิ่มเติมได้ที่
ข้อผิดพลาดและข้อยกเว้น
ลักษณะที่แนะนำ
ขอแนะนำให้ใช้ลักษณะเหล่านี้หากอุปกรณ์ของคุณรองรับ อย่างไรก็ตาม คุณสามารถผสมและจับคู่ลักษณะจากลักษณะทั้งหมดที่มีอยู่เพื่อให้ตรงกับฟังก์ชันการทำงานของผลิตภัณฑ์ที่มีอยู่มากที่สุด
ตัวอย่างอุปกรณ์: เครือข่ายอย่างง่าย
ส่วนนี้มีเพย์โหลดของความตั้งใจตัวอย่างที่แสดงถึง "เครือข่าย" ทั่วไป ตามประเภทอุปกรณ์และลักษณะข้างต้น หากคุณเพิ่มหรือนำลักษณะในข้อมูลการใช้งานออก ให้แก้ไขการตอบกลับตามนั้นเพื่อให้สอดคล้องกับการเปลี่ยนแปลงเหล่านั้น
ตัวอย่างการตอบสนองการซิงค์
{
"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 } } ] } }
EnableDisableNetworkProfile
ดูรายละเอียดเพิ่มเติมเกี่ยวกับพารามิเตอร์คำสั่งได้ที่ข้อมูลอ้างอิง
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" } } } ] } }
TestNetworkSpeed
ดูรายละเอียดเพิ่มเติมเกี่ยวกับพารามิเตอร์คำสั่งได้ที่ข้อมูลอ้างอิง
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 } } ] } }