स्मार्ट होम सूस वीड गाइड
action.devices.types.SOUSVIDE
- छोटे वीडियो के साथ इंटरैक्शन में, शुरू या बंद करने, टाइमर सेट करने, खाना बनाने के मोड में बदलाव करने या खाने की चीज़ों के प्रीसेट में बदलाव करने या अन्य सेटिंग में बदलाव शामिल हो सकता है.
इस टाइप से पता चलता है कि डिवाइस को Sous Vide आइकॉन और कुछ मिलते-जुलते समानार्थी शब्द और उपनाम दिए गए हैं.
डिवाइस की काबिलियत
लागू करने से जुड़ी जानकारी के लिए, उससे जुड़े एट्रिब्यूट देखें. जैसे, एट्रिब्यूट और स्थितियां, जिन्हें आपकी सेवा को इस्तेमाल करने की अनुमति देनी चाहिए. साथ ही, EXECUTE और QUERY रिस्पॉन्स बनाने का तरीका भी बताएं.
ज़रूरी बातें
अगर ये सुविधाएं और निर्देश आपके डिवाइस पर लागू होते हैं, तो
ये सुविधाएं और निर्देश ज़रूरी हैं. अगर आपके डिवाइस में इन एट्रिब्यूट के लिए सहायता उपलब्ध नहीं है, तो QUERY या EXECUTE के जवाब में functionNotSupported
का गड़बड़ी कोड डालें. ज़्यादा जानकारी के लिए,
गड़बड़ियां और अपवाद देखें.
सुझाए गए लक्षण
अगर ये विशेषताएं आपके डिवाइस पर लागू होती हैं, तो उनका सुझाव दिया जाता है. हालांकि, आपके पास प्रॉडक्ट की सभी उपलब्ध सुविधाओं को मिलाने और उनसे मिलान करने का विकल्प है. हालांकि, इसके लिए ज़रूरी है कि वे आपकी मौजूदा प्रॉडक्ट सुविधाओं से पूरी तरह मेल खाते हों.
क्वालिटी के लिए ज़रूरी शर्तें
- इंतज़ार का समय: 800 मि॰से॰ से कम या उसके बराबर होना चाहिए.
- विश्वसनीयता: 97% से ज़्यादा या उसके बराबर होना चाहिए.
डिवाइस का उदाहरण: बेहद लोकप्रिय वीडियो
इस सेक्शन में, उदाहरण के तौर पर दिए गए इंटेंट पेलोड शामिल हैं, जो ऊपर बताए गए डिवाइस टाइप और विशेषताओं के आधार पर, एक सामान्य "Sous Vide" के बारे में बताते हैं. लागू किए गए हिस्सों में विशेषताएं जोड़ें या हटाएं. इसके बाद, उन बदलावों को दिखाने के लिए अपने जवाबों में ज़रूरत के मुताबिक बदलाव करें.
SYNC जवाब का नमूना
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.SOUSVIDE", "traits": [ "action.devices.traits.Cook", "action.devices.traits.StartStop", "action.devices.traits.Timer", "action.devices.traits.OnOff" ], "name": { "name": "Simple sous vide" }, "willReportState": true, "attributes": { "supportedCookingModes": [ "SOUS_VIDE" ], "foodPresets": [ { "food_preset_name": "chicken_key", "supported_units": [ "POUNDS", "OUNCES" ], "food_synonyms": [ { "synonym": [ "Chicken", "Whole chicken" ], "lang": "en" } ] }, { "food_preset_name": "salmon_key", "supported_units": [ "POUNDS", "OUNCES" ], "food_synonyms": [ { "synonym": [ "Salmon", "King salmon" ], "lang": "en" } ] } ], "maxTimerLimitSec": 30, "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, "on": true, "isRunning": true, "isPaused": false, "timerRemainingSec": 15, "currentCookingMode": "SOUS_VIDE", "currentFoodPreset": "chicken_key" } } } }
EXECUTE कमांड का नमूना
कुक
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Cook
रेफ़रंस देखें.
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.Cook", "params": { "start": false, "cookingMode": "SOUS_VIDE" } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentCookingMode": "NONE", "currentFoodPreset": "NONE" } } ] } }
स्टार्टस्टॉप
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
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 } } ] } }
टाइमर शुरू होने का समय
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Timer
रेफ़रंस देखें.
{ "requestId": "6894439706274654522", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerStart", "params": { "timerTimeSec": 15 } } ] } ] } } ] }
{ "requestId": "6894439706274654522", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": 15 } } ] } }
टाइमर एडजस्ट करें
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Timer
रेफ़रंस देखें.
{ "requestId": "6894439706274654524", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerAdjust", "params": { "timerTimeSec": -10 } } ] } ] } } ] }
{ "requestId": "6894439706274654524", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": 5 } } ] } }
टाइमर रोकें
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Timer
रेफ़रंस देखें.
{ "requestId": "6894439706274654526", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerPause" } ] } ] } } ] }
{ "requestId": "6894439706274654526", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": 15, "timerPaused": true } } ] } }
टाइमर फिर से शुरू करें
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Timer
रेफ़रंस देखें.
{ "requestId": "6894439706274654528", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerResume" } ] } ] } } ] }
{ "requestId": "6894439706274654528", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": 15, "timerPaused": false } } ] } }
टाइमर रद्द करें
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.Timer
रेफ़रंस देखें.
{ "requestId": "6894439706274654530", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerCancel" } ] } ] } } ] }
{ "requestId": "6894439706274654530", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": -1 } } ] } }
बंद है
कमांड पैरामीटर के बारे में ज़्यादा जानने के लिए,
action.devices.traits.OnOff
रेफ़रंस देखें.
{ "requestId": "6894439706274654532", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.OnOff", "params": { "on": true } } ] } ] } } ] }
{ "requestId": "6894439706274654532", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "on": true } } ] } }