คู่มือกริ่งประตูสมาร์ทโฮม
action.devices.types.DOORBELL
- กริ่งประตูสามารถแจ้งให้ผู้อื่นทราบว่ามีคนมาที่บ้าน
อุปกรณ์นี้สามารถส่งการแจ้งเตือนและสตรีมวิดีโอได้หากมีความสามารถดังกล่าว
ประเภทนี้บ่งบอกว่าอุปกรณ์ได้รับไอคอนกริ่งประตูและคำพ้องความหมายและนามแฝงที่เกี่ยวข้อง
ความสามารถของอุปกรณ์
โปรดดูรายละเอียดการใช้งานในเอกสารประกอบของลักษณะที่เกี่ยวข้อง เช่น แอตทริบิวต์และสถานะที่บริการควรรองรับ และวิธีสร้างการตอบกลับ EXECUTE และ QUERY
ลักษณะที่แนะนำ
เราขอแนะนำให้ใช้ลักษณะเหล่านี้หากอุปกรณ์ของคุณมี อย่างไรก็ตาม คุณผสมและจับคู่จากลักษณะทั้งหมดที่มีอยู่เพื่อให้ตรงกับฟังก์ชันการทำงานของผลิตภัณฑ์ที่มีอยู่มากที่สุดได้
ข้อกำหนดด้านคุณภาพ
- เวลาในการตอบสนอง: ต้องน้อยกว่าหรือเท่ากับ 2000ms
- ความน่าเชื่อถือ: ต้องมากกว่าหรือเท่ากับ 97%
ตัวอย่างอุปกรณ์: กริ่งประตูแบบธรรมดา
ส่วนนี้มีตัวอย่างเพย์โหลด Intent ที่แสดง "กริ่งประตู" ทั่วไปตามประเภทอุปกรณ์และลักษณะข้างต้น หากคุณเพิ่มหรือนําลักษณะในการนําไปใช้ออก ให้แก้ไขคําตอบให้สอดคล้องกับการเปลี่ยนแปลงเหล่านั้น
ตัวอย่างการตอบกลับ SYNC
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.DOORBELL", "traits": [ "action.devices.traits.CameraStream", "action.devices.traits.ObjectDetection" ], "name": { "name": "Simple doorbell" }, "willReportState": true, "notificationSupportedByAgent": true, "attributes": { "cameraStreamSupportedProtocols": [ "hls" ], "cameraStreamNeedAuthToken": 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 } } } }
ตัวอย่างคำสั่ง EXECUTE
GetCameraStream
ดูรายละเอียดเพิ่มเติมเกี่ยวกับพารามิเตอร์คําสั่งได้ที่ข้อมูลอ้างอิง
action.devices.traits.CameraStream
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.GetCameraStream", "params": { "StreamToChromecast": true, "SupportedStreamProtocols": [ "hls" ] } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "cameraStreamAccessUrl": "https://example.com/stream.mp4", "cameraStreamProtocol": "hls" } } ] } }
ตัวอย่างรายงานการแจ้งเตือน
ObjectDetection
ดูรายละเอียดเพิ่มเติมเกี่ยวกับพร็อพเพอร์ตี้การแจ้งเตือนได้ที่ข้อมูลอ้างอิง
action.devices.traits.ObjectDetection
{ "requestId": "6894439706274654518", "payload": { "devices": { "notifications": { "123": { "ObjectDetection": { "objects": { "named": [ "Alice" ] }, "priority": 0, "detectionTimestamp": 946684800000 } } } } } }
{ "requestId": "6894439706274654518" }