... maybe possible with this, to send UDP messages from alexa to d1? Could be great, as Echo Dot really recognizes vocal orders up to 10m with good prezision and normal loudness))
Who ist experienced with .json and/or interested in solution?
I already started to do a wrap for the SDK but then i stuck because i do not have a Creditcard and therefore i could not create a AWS Account. Due to this i was not able to create a Alexa-Skill in the Console
I´m not sure if Alexa can send the message but i´m sure a php script hosted online can do it.
In the last days i successfully setup a test skill in the console and a php script which responds to an predefined utterance (in the console) and send back a text alexa will speak out...
in my example it returns this json
B4X:
{
"version": "0.1",
"response": {
"outputSpeech": {
"text": "Ja, dass hat funktioniert. ha ha ha",
"type": "PlainText"
},
"card": {
"content": "Ja, dass hat funktioniert. ha ha ha",
"title": "HalloWeltIntent"
},
"speechletResponse": {
"outputSpeech": {
"text": "Ja, dass hat funktioniert. ha ha ha"
},
"card": {
"content": "Ja, dass hat funktioniert. ha ha ha",
"title": "HalloWeltIntent"
}
}
},
"sessionAttributes": {
"countActionList": {
"read": true,
"category": true
}
}
}