स्मार्ट होम गेम कंसोल गाइड
action.devices.types.GAME_CONSOLE
- गेम कंसोल के साथ होने वाले इंटरैक्शन में गेम खेलना और ऑपरेटिंग डिवाइस के कंट्रोल शामिल हैं.
यह टाइप बताता है कि डिवाइस को गेम कंसोल आइकॉन मिलता है और कुछ संबंधित मिलते हैं समानार्थी शब्द और उपनाम.
डिवाइस की क्षमताएं
इससे जुड़े Trait दस्तावेज़ को देखें लागू करने के बारे में जानकारी, जैसे कि वे एट्रिब्यूट और स्थितियां जिनका आपकी सेवा में इस्तेमाल किया जाना चाहिए. साथ ही, EXECUTE और QUERY रिस्पॉन्स बनाएं.
ज़रूरी विशेषताएं
अगर लागू हो, तो आपके ये लक्षण और निर्देश ज़रूरी हैं
डिवाइस. अगर आपके डिवाइस में ये लक्षण काम नहीं करते हैं, तो गड़बड़ी का कोड डालें
QUERY या EXECUTE जवाब में functionNotSupported
. यहां जाएं:
ज़्यादा जानकारी के लिए, गड़बड़ियां और अपवाद.
-
action.devices.traits.AppSelector
-
action.devices.traits.MediaState
-
action.devices.traits.OnOff
-
action.devices.traits.TransportControl
सुझाई गई विशेषताएं
अगर आपके डिवाइस पर लागू होता है, तो इन विशेषताओं का सुझाव दिया जाता है. हालांकि, आपके पास अपनी मौजूदा विशेषताओं को एक-दूसरे से मैच करने के लिए, प्रॉडक्ट की मुख्य सुविधाएं और उनके काम करने का तरीका जानें.
क्वालिटी के लिए ज़रूरी शर्तें
- इंतज़ार का समय: 3000 मि॰से॰ या उससे कम होना चाहिए.
- भरोसेमंद: 97% या उससे ज़्यादा होना चाहिए.
डिवाइस का उदाहरण: आसान गेम कंसोल
इस सेक्शन में, सामान्य "गेम कंसोल" को दिखाने वाले इंटेंट पेलोड का उदाहरण शामिल है ऊपर दिए गए डिवाइस टाइप और विशेषताओं के आधार पर. अगर लागू करने की प्रोसेस में एट्रिब्यूट को जोड़ा या हटाया जाता है, अपने जवाबों में ज़रूरत के मुताबिक बदलाव कर सकते हैं, ताकि उन बदलावों को दिखाया जा सके.
सिंक के जवाब का उदाहरण
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.GAME_CONSOLE", "traits": [ "action.devices.traits.AppSelector", "action.devices.traits.MediaState", "action.devices.traits.OnOff", "action.devices.traits.TransportControl" ], "name": { "name": "Simple game console" }, "willReportState": true, "attributes": { "transportControlSupportedCommands": [ "NEXT", "PREVIOUS", "PAUSE", "STOP", "RESUME", "CAPTION_CONTROL" ], "availableApplications": [ { "key": "youtube", "names": [ { "name_synonym": [ "Youtube", "Youtube_en" ], "lang": "en" } ] }, { "key": "frogger", "names": [ { "name_synonym": [ "Frogger", "Frogger_en" ], "lang": "en" } ] } ], "supportActivityState": true, "supportPlaybackState": 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, "currentApplication": "youtube", "activityState": "ACTIVE", "playbackState": "PAUSED" } } } }
EXECUTE निर्देशों का सैंपल
appInstall
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.AppSelector
संदर्भ.
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.appInstall", "params": { "newApplication": "youtube" } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentApplication": "youtube" } } ] } }
appSearch
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.AppSelector
संदर्भ.
{ "requestId": "6894439706274654518", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.appSearch", "params": { "newApplication": "youtube" } } ] } ] } } ] }
{ "requestId": "6894439706274654518", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentApplication": "youtube" } } ] } }
appSelect
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.AppSelector
संदर्भ.
{ "requestId": "6894439706274654520", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.appSelect", "params": { "newApplication": "youtube" } } ] } ] } } ] }
{ "requestId": "6894439706274654520", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentApplication": "youtube" } } ] } }
OnOff
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.OnOff
संदर्भ.
{ "requestId": "6894439706274654522", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.OnOff", "params": { "on": true } } ] } ] } } ] }
{ "requestId": "6894439706274654522", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "on": true } } ] } }
mediaClosedCaptioningOff
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654524", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaClosedCaptioningOff" } ] } ] } } ] }
{ "requestId": "6894439706274654524", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "PLAYING" } } ] } }
mediaClosedCaptioningOn
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654526", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaClosedCaptioningOn", "params": { "closedCaptioningLanguage": "en" } } ] } ] } } ] }
{ "requestId": "6894439706274654526", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "PLAYING" } } ] } }
mediaNext
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654528", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaNext" } ] } ] } } ] }
{ "requestId": "6894439706274654528", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "FAST_FORWARDING" } } ] } }
mediaPause
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654530", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaPause" } ] } ] } } ] }
{ "requestId": "6894439706274654530", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "PAUSED" } } ] } }
mediaPrevious
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654532", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaPrevious" } ] } ] } } ] }
{ "requestId": "6894439706274654532", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "REWINDING" } } ] } }
mediaResume
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654534", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaResume" } ] } ] } } ] }
{ "requestId": "6894439706274654534", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "PLAYING" } } ] } }
mediaStop
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TransportControl
संदर्भ.
{ "requestId": "6894439706274654536", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.mediaStop" } ] } ] } } ] }
{ "requestId": "6894439706274654536", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "playbackState": "STOPPED" } } ] } }