ज़्यादा एट्रिब्यूट और हैंडलर जोड़ना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
अपने डिवाइस मॉडल में जितने चाहें उतने एट्रिब्यूट जोड़े जा सकते हैं. ये विशेषताएं
न सिर्फ़ एक डिवाइस टाइप के लिए, बल्कि आप उनका अपने हिसाब से इस्तेमाल कर सकते हैं.
किसी विशेषता को जोड़ने और आने वाले कमांड को हैंडल करने की प्रोसेस:
तय करें कि आपको कौनसी खूबी चाहिए
जोड़ें.
pushtotalk.py
फ़ाइल खोलें.
cd assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc
nano pushtotalk.py
मौजूदा कोड ब्लॉक के तहत, यह कोड ब्लॉक जोड़ें
action.devices.commands.OnOff
निर्देश को हैंडल करता है (मौजूदा यूआरएल को न मिटाएं
कोड ब्लॉक).
@device_handler.command('action.devices.commands.command-name')
def my-function(parameter-name):
if conditional:
logging.info('Something happened.')
else:
logging.info('Something else happened.')
ऊपर दिए गए कोड ब्लॉक में, हर वैरिएबल के लिए ज़रूरी जानकारी पाएं.
command-name | इसके खास Trait पेज पर जाएं
पहला चरण (उदाहरण के लिए, ColorTemperature).
डिवाइस COMMANDS टेबल से किसी निर्देश का इस्तेमाल करें. |
my-function | अपने हैंडलर फ़ंक्शन को जो चाहें नाम दें. |
parameter-name | डिवाइस COMMANDS को पुनः देखें
Trait पेज पर टेबल को व्यवस्थित करना ज़रूरी है. हर निर्देश में एक या उससे ज़्यादा पैरामीटर होते हैं
से जुड़ी हुई हैं. ये EXECUTE में "params" के अंतर्गत सूचीबद्ध हैं
JSON का अनुरोध करें. पैरामीटर का सटीक नाम इस्तेमाल करें. ध्यान दें कि इनमें से कुछ
पैरामीटर ऐसे ऑब्जेक्ट होते हैं जिनमें अन्य पैरामीटर होते हैं - बस
टॉप-लेवल ऑब्जेक्ट है.
|
conditional | आपको कंडीशनल (शर्त के साथ) का इस्तेमाल करने की ज़रूरत नहीं है
है, लेकिन इससे यह समझने में मदद मिल सकती है कि आप फ़ाइल को कैसे एक्ज़ीक्यूट करते हैं
निर्देश देखें. |
यहां चमक के लक्षणों के कुछ उदाहरण दिए गए हैं
और ColorTemperature:
@device_handler.command('action.devices.commands.BrightnessAbsolute')
def brightnessCheck(brightness):
if brightness > 50:
logging.info('brightness > 50')
else:
logging.info('brightness <= 50')
@device_handler.command('action.devices.commands.ColorAbsolute')
def color(color):
if color.get('name') == "blue":
logging.info('color is blue')
else:
logging.info('color is not blue')
डिवाइस का मॉडल अपडेट करना
के साथ उस एट्रिब्यूट को जोड़ना होगा जिसे आपने पहले चरण में जोड़ा था.
बदला गया सोर्स कोड चलाएं.
cd assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc
python pushtotalk.py
Enter बटन दबाएं और क्वेरी चलाकर देखें.
उदाहरण के लिए:
चमक को 65% पर सेट करो.
इसे नीले रंग का करें.
अगला चरण
कस्टम डिवाइस ऐक्शन रजिस्टर करना
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eYou can freely add numerous traits to your device model, independent of device type.\u003c/p\u003e\n"],["\u003cp\u003eThe process to add a trait involves updating the \u003ccode\u003epushtotalk.py\u003c/code\u003e file with a new code block to handle the incoming command and then updating the device model.\u003c/p\u003e\n"],["\u003cp\u003eEach added trait requires specific command details that can be found on the relevant trait documentation page.\u003c/p\u003e\n"],["\u003cp\u003eOnce implemented, the code can be tested by running \u003ccode\u003epushtotalk.py\u003c/code\u003e and using voice commands corresponding to the added trait.\u003c/p\u003e\n"]]],[],null,["# Add More Traits and Handlers\n\nYou can add as many traits to your device model as you wish. These traits are\nnot tied to just one device type, you can use them as you choose.\n\nThis is the process to add any trait and handle the incoming command:\n\n1. Determine which [trait](/assistant/sdk/reference/traits) you want\n to add.\n\n2. Open the `pushtotalk.py` file.\n\n ```\n cd assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc\n ``` \n\n ```\n nano pushtotalk.py\n ```\n3. Add the following code block under the existing one that\n handles the `action.devices.commands.OnOff` command (don't delete the existing\n code block).\n\n ```\n @device_handler.command('action.devices.commands.command-name')\n def my-function(parameter-name):\n if conditional:\n logging.info('Something happened.')\n else:\n logging.info('Something else happened.')\n ```\n4. Find the information you need for each variable in the above code block.\n\n |------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n | `command-name` | Go to the specific trait page from Step 1 (for example, [ColorTemperature](/assistant/sdk/reference/traits/colortemperature)). Use a command from the **Device COMMANDS** table. |\n | `my-function` | Name your handler function whatever you want. |\n | `parameter-name` | Look again at the **Device COMMANDS** table on the trait page. Each command has one or more parameters associated with it. These are listed under `\"params\"` in the EXECUTE request JSON. Use the exact parameter name. Note that some of these parameters are objects that contain other parameters - just use the top-level object. |\n | `conditional` | You don't strictly need to use a conditional in your handler code, but it may help to differentiate how you execute the command on the device. |\n\n Here are some examples for traits [Brightness](/assistant/sdk/reference/traits/brightness)\n and [ColorTemperature](/assistant/sdk/reference/traits/colortemperature): \n\n ```python\n @device_handler.command('action.devices.commands.BrightnessAbsolute')\n def brightnessCheck(brightness):\n if brightness \u003e 50:\n logging.info('brightness \u003e 50')\n else:\n logging.info('brightness \u003c= 50')\n\n @device_handler.command('action.devices.commands.ColorAbsolute')\n def color(color):\n if color.get('name') == \"blue\":\n logging.info('color is blue')\n else:\n logging.info('color is not blue')\n ```\n5. [Update the device model](/assistant/sdk/guides/service/python/extend/register-device-traits)\n with the trait you added in Step 1.\n\n6. Run the modified source code.\n\n ```\n cd assistant-sdk-python/google-assistant-sdk/googlesamples/assistant/grpc\n ``` \n\n ```\n python pushtotalk.py\n ```\n7. Press the Enter key and try a query.\n\n For example:\n\n *Set brightness to 65%.*\n\n *Make it blue.*\n\nNext step\n---------\n\n[Register Custom Device Actions](/assistant/sdk/guides/service/python/extend/custom-actions)"]]