alexa-app-savant
Version:
alexa-app app for Savant automation systems
34 lines (29 loc) • 900 B
JavaScript
//Intent includes
var savantLib = require('../lib/savantLib');
//Intent exports
module.change_code = 1;
module.exports = function(app,callback){
//Intent meta information
var intentDictionary = {
'intentName' : 'disableFletchButton',
'intentVersion' : '1.0',
'intentDescription' : 'Disable state of amazon IOT button',
'intentEnabled' : 0
};
//Intent Enable/Disable
if (intentDictionary.intentEnabled === 1){
//Intent
app.intent('disableFletchButton', {
"slots":{}
,"utterances":["{disablePrompt} {fletch|fletcher |} button"]
},function(req,res) {
console.log('disableFletchButton Intent: Fletchers Button is now disabled');
savantLib.writeState("userDefined.fletchButton",0);
res.say('Fletchers Button is now disabled').send();
return false;
}
);
}
//Return intent meta info to index
callback(intentDictionary);
};