स्मार्ट होम एयर कंडिशनिंग यूनिट की गाइड
action.devices.types.AC_UNIT
- एयर कंडीशनिंग यूनिट, थर्मोस्टैट की तरह हैं. हालांकि, इनमें हीटिंग सिस्टम की सुविधा काम नहीं करती और हो सकता है कि तापमान का टारगेट सेट करने की सुविधा काम न करती हो.
इस टाइप से पता चलता है कि डिवाइस को एयर कंडिशनिंग यूनिट का आइकॉन मिलता है और इससे जुड़ी कुछ जानकारी दी जाती है समानार्थी शब्द और उपनाम.
डिवाइस की क्षमताएं
इससे जुड़े Trait दस्तावेज़ को देखें लागू करने के बारे में जानकारी, जैसे कि वे एट्रिब्यूट और स्थितियां जिनका आपकी सेवा में इस्तेमाल किया जाना चाहिए. साथ ही, EXECUTE और QUERY रिस्पॉन्स बनाएं.
ज़रूरी विशेषताएं
अगर लागू हो, तो आपके ये लक्षण और निर्देश ज़रूरी हैं
डिवाइस. अगर आपके डिवाइस में ये लक्षण काम नहीं करते हैं, तो गड़बड़ी का कोड डालें
QUERY या EXECUTE जवाब में functionNotSupported
. यहां जाएं:
ज़्यादा जानकारी के लिए, गड़बड़ियां और अपवाद.
क्वालिटी के लिए ज़रूरी शर्तें
- इंतज़ार का समय: 1,000 मि॰से॰ या उससे कम होना चाहिए.
- भरोसेमंद: 97% या उससे ज़्यादा होना चाहिए.
उदाहरण डिवाइस: सामान्य एसी यूनिट
इस सेक्शन में "एयर कंडीशनिंग यूनिट" को दिखाने वाले इंटेंट पेलोड का उदाहरण दिया गया है ऊपर दिए गए डिवाइस टाइप और विशेषताओं के आधार पर. अगर लागू करने की प्रोसेस में एट्रिब्यूट को जोड़ा या हटाया जाता है, अपने जवाबों में ज़रूरत के मुताबिक बदलाव कर सकते हैं, ताकि उन बदलावों को दिखाया जा सके.
सिंक के जवाब का उदाहरण
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.AC_UNIT", "traits": [ "action.devices.traits.FanSpeed", "action.devices.traits.OnOff", "action.devices.traits.TemperatureSetting" ], "name": { "name": "Simple AC unit" }, "willReportState": true, "attributes": { "availableFanSpeeds": { "speeds": [ { "speed_name": "low_key", "speed_values": [ { "speed_synonym": [ "Low", "Slow" ], "lang": "en" } ] }, { "speed_name": "high_key", "speed_values": [ { "speed_synonym": [ "High", "Speed 2" ], "lang": "en" } ] } ], "ordered": true }, "availableThermostatModes": [ "off", "cool", "fan-only", "on" ], "thermostatTemperatureUnit": "C" }, "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, "currentFanSpeedSetting": "low_key", "thermostatMode": "cool", "thermostatTemperatureAmbient": 25, "thermostatTemperatureSetpoint": 20 } } } }
EXECUTE निर्देशों का सैंपल
SetFanSpeed
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.FanSpeed
संदर्भ.
{ "requestId": "6894439706274654518", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.SetFanSpeed", "params": { "fanSpeed": "high_key" } } ] } ] } } ] }
{ "requestId": "6894439706274654518", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentFanSpeedSetting": "high_key" } } ] } }
OnOff
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.OnOff
संदर्भ.
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.OnOff", "params": { "on": true } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "on": true } } ] } }
ThermostatTemperatureSetpoint
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TemperatureSetting
संदर्भ.
{ "requestId": "6894439706274654520", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.ThermostatTemperatureSetpoint", "params": { "thermostatTemperatureSetpoint": 22 } } ] } ] } } ] }
{ "requestId": "6894439706274654520", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "thermostatMode": "cool", "thermostatTemperatureSetpoint": 22, "thermostatTemperatureAmbient": 25.1 } } ] } }
ThermostatSetMode
कमांड पैरामीटर के बारे में ज़्यादा जानकारी के लिए,
देखें
action.devices.traits.TemperatureSetting
संदर्भ.
{ "requestId": "6894439706274654522", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.ThermostatSetMode", "params": { "thermostatMode": "cool" } } ] } ] } } ] }
{ "requestId": "6894439706274654522", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "thermostatMode": "cool", "thermostatTemperatureSetpoint": 22, "thermostatTemperatureAmbient": 25.1 } } ] } }