-
-
Save djmason9/3f02f3b518192d11ffeca9109116cbae to your computer and use it in GitHub Desktop.
Alexa Matrix Alexa Skill Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"interactionModel": { | |
"languageModel": { | |
"invocationName": "light frame", | |
"intents": [ | |
{ | |
"name": "AMAZON.FallbackIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.CancelIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.HelpIntent", | |
"samples": [ | |
"help" | |
] | |
}, | |
{ | |
"name": "AMAZON.StopIntent", | |
"samples": [ | |
"to stop" | |
] | |
}, | |
{ | |
"name": "AMAZON.NavigateHomeIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "NeoIntent", | |
"slots": [ | |
{ | |
"name": "animation", | |
"type": "animations" | |
} | |
], | |
"samples": [ | |
"for a {animation} show", | |
"to run the {animation} light show", | |
"to run the {animation} show", | |
"to run the {animation} lights" | |
] | |
} | |
], | |
"types": [ | |
{ | |
"name": "animations", | |
"values": [ | |
{ | |
"name": { | |
"value": "random" | |
} | |
}, | |
{ | |
"name": { | |
"value": "arcade" | |
} | |
}, | |
{ | |
"name": { | |
"value": "juggle" | |
} | |
}, | |
{ | |
"name": { | |
"value": "dots" | |
} | |
}, | |
{ | |
"name": { | |
"value": "off" | |
} | |
}, | |
{ | |
"name": { | |
"value": "confetti" | |
} | |
} | |
] | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment