स्मार्ट होम अवन गाइड

action.devices.types.OVEN - अवन के इस्तेमाल में कुछ खास तापमानों पर सेंकने या भूनने की क्षमता शामिल है. अवन के गर्म होने की वजह से, अवन के अंदर का तापमान अलग-अलग होता है. इसलिए, इस पर भी नज़र रखी जा सकती है. अवन में पकने का समय तय होता है, जिसकी वजह से बेकिंग का समय सीमित हो जाता है.

इस टाइप से पता चलता है कि डिवाइस को अवन आइकॉन मिलता है और कुछ संबंधित समानार्थी शब्द और उपनाम.

अवन में action.devices.traits.OnOff और action.devices.traits.TemperatureControl:
  • अगर डिवाइस पर OnOff की सुविधा काम करती है, तो अवन को पहले से गर्म कर लें, तो action.devices.commands.OnOff भेजा जाएगा आदेश.
  • अगर डिवाइस पर TemperatureControl की सुविधा काम करती है, तो अवन को 350 डिग्री पर प्रीहीट कर लें, ताकि अवन को सेट करने का निर्देश दिया जा सके अवन को उस तापमान पर सेट करें.

डिवाइस की क्षमताएं

इससे जुड़े Trait दस्तावेज़ को देखें लागू करने के बारे में जानकारी, जैसे कि वे एट्रिब्यूट और स्थितियां जिनका आपकी सेवा में इस्तेमाल किया जाना चाहिए. साथ ही, EXECUTE और QUERY रिस्पॉन्स बनाएं.

ज़रूरी विशेषताएं

अगर लागू हो, तो आपके ये लक्षण और निर्देश ज़रूरी हैं डिवाइस. अगर आपके डिवाइस में ये लक्षण काम नहीं करते हैं, तो गड़बड़ी का कोड डालें QUERY या EXECUTE जवाब में functionNotSupported. यहां जाएं: ज़्यादा जानकारी के लिए, गड़बड़ियां और अपवाद.

अगर आपके डिवाइस पर लागू होता है, तो इन विशेषताओं का सुझाव दिया जाता है. हालांकि, आपके पास अपनी मौजूदा विशेषताओं को एक-दूसरे से मैच करने के लिए, प्रॉडक्ट की मुख्य सुविधाएं और उनके काम करने का तरीका जानें.

क्वालिटी के लिए ज़रूरी शर्तें

  • इंतज़ार का समय: 3000 मि॰से॰ या उससे कम होना चाहिए.
  • भरोसेमंद: 97% या उससे ज़्यादा होना चाहिए.

डिवाइस का उदाहरण: साधारण अवन

इस सेक्शन में "ओवन" दिखाने वाले इंटेंट पेलोड का उदाहरण शामिल है ऊपर दिए गए डिवाइस टाइप और विशेषताओं के आधार पर. अगर लागू करने की प्रोसेस में एट्रिब्यूट को जोड़ा या हटाया जाता है, अपने जवाबों में ज़रूरत के मुताबिक बदलाव कर सकते हैं, ताकि उन बदलावों को दिखाया जा सके.

सिंक के जवाब का उदाहरण

अनुरोध करें
{
  "requestId": "6894439706274654512",
  "inputs": [
    {
      "intent": "action.devices.SYNC"
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654512",
  "payload": {
    "agentUserId": "user123",
    "devices": [
      {
        "id": "123",
        "type": "action.devices.types.OVEN",
        "traits": [
          "action.devices.traits.Cook",
          "action.devices.traits.OnOff",
          "action.devices.traits.TemperatureControl",
          "action.devices.traits.Timer",
          "action.devices.traits.StartStop"
        ],
        "name": {
          "name": "Simple oven"
        },
        "willReportState": true,
        "attributes": {
          "supportedCookingModes": [
            "BAKE",
            "CONVECTION_BAKE",
            "ROAST"
          ],
          "maxTimerLimitSec": 3600,
          "temperatureRange": {
            "minThresholdCelsius": 65,
            "maxThresholdCelsius": 288
          },
          "temperatureUnitForUX": "F"
        },
        "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,
        "temperatureSetpointCelsius": 175,
        "currentCookingMode": "BAKE",
        "timerRemainingSec": -1
      }
    }
  }
}

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": true,
                  "cookingMode": "ROAST"
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654516",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "currentCookingMode": "ROAST"
        }
      }
    ]
  }
}

OnOff

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें action.devices.traits.OnOff संदर्भ.

अनुरोध करें
{
  "requestId": "6894439706274654518",
  "inputs": [
    {
      "intent": "action.devices.EXECUTE",
      "payload": {
        "commands": [
          {
            "devices": [
              {
                "id": "123"
              }
            ],
            "execution": [
              {
                "command": "action.devices.commands.OnOff",
                "params": {
                  "on": true
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654518",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "on": true
        }
      }
    ]
  }
}

SetTemperature

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें action.devices.traits.TemperatureControl संदर्भ.

अनुरोध करें
{
  "requestId": "6894439706274654520",
  "inputs": [
    {
      "intent": "action.devices.EXECUTE",
      "payload": {
        "commands": [
          {
            "devices": [
              {
                "id": "123"
              }
            ],
            "execution": [
              {
                "command": "action.devices.commands.SetTemperature",
                "params": {
                  "temperature": 200
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654520",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "temperatureSetpointCelsius": 200,
          "temperatureAmbientCelsius": 100
        }
      }
    ]
  }
}

TimerStart

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें action.devices.traits.Timer संदर्भ.

अनुरोध करें
{
  "requestId": "6894439706274654522",
  "inputs": [
    {
      "intent": "action.devices.EXECUTE",
      "payload": {
        "commands": [
          {
            "devices": [
              {
                "id": "123"
              }
            ],
            "execution": [
              {
                "command": "action.devices.commands.TimerStart",
                "params": {
                  "timerTimeSec": 300
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654522",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "timerRemainingSec": 300
        }
      }
    ]
  }
}

TimerAdjust

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें 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": 290
        }
      }
    ]
  }
}

TimerPause

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें 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": 300,
          "timerPaused": true
        }
      }
    ]
  }
}

TimerResume

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें 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": 300,
          "timerPaused": false
        }
      }
    ]
  }
}

TimerCancel

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें 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
        }
      }
    ]
  }
}

StartStop

कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए, देखें action.devices.traits.StartStop संदर्भ.

अनुरोध करें
{
  "requestId": "6894439706274654532",
  "inputs": [
    {
      "intent": "action.devices.EXECUTE",
      "payload": {
        "commands": [
          {
            "devices": [
              {
                "id": "123"
              }
            ],
            "execution": [
              {
                "command": "action.devices.commands.StartStop",
                "params": {
                  "start": true
                }
              }
            ]
          }
        ]
      }
    }
  ]
}
रिस्पॉन्स
{
  "requestId": "6894439706274654532",
  "payload": {
    "commands": [
      {
        "ids": [
          "123"
        ],
        "status": "SUCCESS",
        "states": {
          "online": true,
          "isRunning": true
        }
      }
    ]
  }
}

डिवाइस ERRORS

पूरी सूची देखें गड़बड़ियों और अपवाद के बारे में जानें.