Hi
I’ve been playing with intents and generally all works fine however when creating an intent for a select source to media player I’ve noticed that it doesnt return a speech confirmation.
e.g. intent
Hi
I wrote a custom skill as per instruction. Im new to that so is probably not that efficient or shortest way but its working. For volume up got intent as follow, that calling a script based on device ( i did so i can hook one or more device). So you passing device as a slot then this calling an appropriate script, mostly due to reason im hook also skyq to that and these got totally diffrent way of powering on.
Obviously got setup media player etc. Most work took me to get an intent for a set volume to level e.g. set volume to 10 or 15 mostly due to not fully knowing a syntax. But now got most of the commands working, on , off, vol up down ,set volume , play , pause, open source
Sample intent in Alexa.
{
"name": "VolumeUpIntent",
"samples": [
"Alexa ask Bob to volume up {device_name}",
"Alexa ask Bob to increase {device_name}"
],
"slots": [
{
"name": "device_name",
"type": "WatchinDevice",
"samples": [
"tv"
]
}
]
}