Guida alle pentole a pressione per la smart home
action.devices.types.PRESSURECOOKER
- Le interazioni con le pentole a pressione possono includere l'avvio e l'interruzione, l'impostazione di un timer, la regolazione delle modalità di cottura o delle preimpostazioni dei cibi oppure la regolazione di altre diverse impostazioni.
Questo tipo indica che il dispositivo riceve l'icona della pentola a pressione e alcuni contenuti correlati sinonimi e alias.
Funzionalità del dispositivo
Consulta la documentazione sui trait corrispondente per dettagli di implementazione, come gli attributi e gli stati che il servizio dovrebbe supportare e come creare risposte EXECUTE e QUERY.
Trait obbligatori
Questi trait e comandi sono obbligatori, se applicabili al tuo
dispositivo. Se il tuo dispositivo non supporta queste funzionalità, inserisci il codice di errore di
functionNotSupported
in una risposta QUERY o EXECUTE. Consulta:
Errori ed eccezioni per saperne di più.
Trait consigliati
Questi trait sono consigliati, se applicabili al tuo dispositivo. Tuttavia, puoi combinare tutte le caratteristiche disponibili per associarle al meglio a quelle esistenti. funzionalità del prodotto.
Requisiti di qualità
- Latenza: deve essere inferiore o uguale a 800 ms.
- Affidabilità: deve essere superiore o uguale al 97%.
Esempio di dispositivo: pentola a pressione semplice
Questa sezione contiene payload di intent di esempio che rappresentano una "pentola a pressione" comune in base al tipo di dispositivo e alle caratteristiche di cui sopra. Se aggiungi o rimuovi i trait nell'implementazione, modificare le tue risposte di conseguenza per riflettere tali cambiamenti.
Esempio di risposta SYNC
{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.PRESSURECOOKER", "traits": [ "action.devices.traits.Cook", "action.devices.traits.OnOff", "action.devices.traits.Timer", "action.devices.traits.StartStop" ], "name": { "name": "Simple pressure cooker" }, "willReportState": true, "attributes": { "supportedCookingModes": [ "PRESSURE_COOK" ], "foodPresets": [ { "food_preset_name": "roast_key", "supported_units": [ "POUNDS", "OUNCES" ], "food_synonyms": [ { "synonym": [ "Roast", "Chuck roast" ], "lang": "en" } ] }, { "food_preset_name": "ribs_key", "supported_units": [ "POUNDS", "OUNCES" ], "food_synonyms": [ { "synonym": [ "Ribs", "Rack of ribs" ], "lang": "en" } ] } ], "maxTimerLimitSec": 1200, "pausable": true }, "deviceInfo": { "manufacturer": "smart-home-inc", "model": "hs1234", "hwVersion": "3.2", "swVersion": "11.4" } } ] } }
Esempio di risposta 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": 600, "currentCookingMode": "PRESSURE_COOK", "currentFoodPreset": "roast_key" } } } }
Esempi di comandi EXECUTE
Cucina
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Cook
riferimento.
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.Cook", "params": { "start": false, "cookingMode": "PRESSURE_COOK" } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "currentCookingMode": "NONE", "currentFoodPreset": "NONE" } } ] } }
OnOff
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.OnOff
riferimento.
{ "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 } } ] } }
TimerStart
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Timer
riferimento.
{ "requestId": "6894439706274654522", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.TimerStart", "params": { "timerTimeSec": 600 } } ] } ] } } ] }
{ "requestId": "6894439706274654522", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "timerRemainingSec": 600 } } ] } }
TimerAdjust
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Timer
riferimento.
{ "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": 590 } } ] } }
TimerPause
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Timer
riferimento.
{ "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": 600, "timerPaused": true } } ] } }
TimerResume
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Timer
riferimento.
{ "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": 600, "timerPaused": false } } ] } }
TimerCancel
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.Timer
riferimento.
{ "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
Per ulteriori dettagli sui parametri del comando,
consulta
action.devices.traits.StartStop
riferimento.
{ "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 } } ] } }