/r/alexadev

Photograph via snooOG

/r/alexadev

89 Subscribers

2

Job opportunity for Alexa devs!

My company is hiring software engineers for Alexa skills written in Typescript. The company is doing very well and has a fantastic workplace culture.

Bonus points for being located in the SF Bay Area

If you're interested, DM me before applying :)
https://www.volleythat.com/careers

0 Comments
2023/04/22
20:25 UTC

1

Routine that activates Blueprint skill countdown days until

I want Alexa to announce each weekday at the same time of day the remaining days until the last day of school. Can this be done? What if she counted down to something more universally useful, like a selection of holidays (in this case Memorial Day)? Thanks in advance

0 Comments
2023/02/09
00:47 UTC

1

Trigger a routine when the state of a switch changes

I have a 3 buttons Meross wall switch. I would like to start a routine when the state of a switch changes. Is it possible to do this?

0 Comments
2023/01/29
20:53 UTC

1

Alexa Synchronization problem

Alexa returns the speak before processing the database request

How can I synchronize so the database query runs first?

const SaleForecastIntentHandler = {

canHandle(handlerInput) {

return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest'

&& Alexa.getIntentName(handlerInput.requestEnvelope) === 'SaleForecastIntent';

},

handle(handlerInput) {

let outputSpeech = 'This is the default message.';

var res;

con.connect(function(err) {

if (err) throw err;

con.query("SELECT SUM(tot) as totalval FROM daradb.job", function (err, result, fields) {

if (err) throw err;

outputSpeech=`Total sales forecast this month is ${result[0].totalval}`;

console.log(outputSpeech);

});

});

//outputSpeech=`Total sales forecast this month is ${res[0].totalval}`;

//console.log(res[0].totalval);

//var a="Total sales forecast this month is " + res[0].totalval;

//console.log(a);

//const speakOutput = a

//console.log(res[0].totalval);

//const speakOutput = 'Total sales forecast this month is '+ res;

return handlerInput.responseBuilder

.speak(outputSpeech)

.reprompt('what else do you want to know?')

.getResponse();

},

};

0 Comments
2021/06/17
00:33 UTC

1

Alexa crashes with long audios

Hello,we are developing interactive audiobooks for Alexa and are experiencing severe errors since an update for echos last autumn, leading to an unresponsive echo device.

What happens:

  • You play the story (playing audios (max 239s), user input, next audio). Randomly, not reproducable, the audio is interrupted (delivered via CDN, the audios are correct).
  • After that, Alexa is reacting to "Alexa ...", but her voice seems to be muted. Even built-in skills like music (title is shown on display, no audio) or weather do not work (weatherforecast is shown on display but no audio played).
  • The only thing you can do, is pull the plug of the echo. After rebooting the echo and starting our skill again, the interrupted audio is played with no interruption.It works for a random time, sometimes 1 hour, sometimes some minutes, then the crash occurs again.
  • We experienced the crashwith several devices (echo dot, echo show, different generations)with several skillswith several audios

We could not reproduce the behaviour with developer console. Occurs since last autumn. A ticket is open at Amazon US, but we're still waiting.Question is: Has anyone of you experienced the same crashes with your own skill or skills of others? Found any workaround?

0 Comments
2021/02/10
12:46 UTC

1

Question/Help

Hello I am currently setting up ASK-CLI. I followed all the steps and now I am at "ask configure". It sends me to an Amazon sign in. When I sign in with my Developer account it says this login can only be used on the Amazon Shopping app. What do I do?

0 Comments
2020/12/09
21:48 UTC

1

Best visual dev tool?

Can you achieve as much with these as you can if you hard coded it?

Are there any limitations to using a visual (easy?) dev tool?

I have some ideas that I want to test the waters with as soon as.

Thanks

Rich

0 Comments
2019/01/24
17:04 UTC

1

The Jargon SDK - Manage runtime content and localize across the globe

Hey /alexadevs,

It seems this subreddit was lost a while ago but for those who may still use or check it, I wanted to share the Jargon SDK to help developers personalize and think of a broader audience from the start.

https://www.jargon.com/sdk/

Feel free to reach out if there are any questions!

0 Comments
2019/01/11
21:33 UTC

1

Phone Spy

Hello fellow developers!

Just published my first skill, titled "Phone Spy".

Are you getting calls/texts from unsaved numbers on your phone? Have a phone number you are curious about? Just read out the 10-digit number to your Alexa Device, and it fetches the name, service provider, and region of the mystery number! Its as simple as that!

Please note that the skill recognizes only Indian 10-digit mobile numbers as of now. I will be adding support for other regions in the subsequent releases.

I am an amateur in this arena, and your suggestions would be highly appreciated!

Link to the skill: https://www.amazon.com/dp/B07DYVLKVC/ref=sr_1_1?s=digital-skills&ie=UTF8&qid=1529748424&sr=1-1&keywords=phone+spy

0 Comments
2018/06/25
12:19 UTC

1

Alexa skills and Action developers

We are looking for companies or agencies that develop Alexa skills and/or Google Home Action for clients. We are adding a special feature on our website that will benefit your company or business. Kindly, comment or direct message us with your website. Thank you!

0 Comments
2018/04/03
03:37 UTC

1

best current Alexa tutorials?

Did one of the roadshow alexa tutorial sessions recently. Have some time to try some self guided learning. ALL of the tutorials I've seen so far use superceded interface and efforts so far to transport the demo'd methods into the current interface has been frustrating.

weird, since I can handle the json format, creating lambda functions etc in other coding projects.

heck, managed to write some custom functions during the workshop, but debugging and understanding the interface is a lot more painful than it should be. Actually had more success previously coding a voice controlled app using a voice recognition api.

suggestions?

2 Comments
2018/03/22
23:56 UTC

2

JSON Feed - How can I have only 1 item parsed daily for an Amazon Flash Briefing?

I'm creating a Flash Briefing for Amazon Alexa enabled devices that will provide information each day. I've started creating the json file with the information needed and did a test on my Echo Dot to ensure the json is setup correctly.

My question now is how do I make it so that Alexa only reads 1 item each day? Currently when I ask Alexa to ready my flash briefing she reads all 3. I'd like to have a months worth or more entered into the json file and not have to update it daily.

[
  {
    "uid": "DAILY_TIP_ITEM_JSON_TTS_0001",
    "updateDate": "2018-02-20T00:00:00.0Z",
    "titleText": "Today's Motivation",
    "mainText": "This is number one.",
    "redirectionUrl": "#"
   },
  {
    "uid": "DAILY_TIP_ITEM_JSON_TTS_0002",
    "updateDate": "2018-02-21T00:00:00.0Z",
    "titleText": "Today's Motivation",
    "mainText": "This is number two.",
    "redirectionUrl": "#"
  },
  {
    "uid": "DAILY_TIP_ITEM_JSON_TTS_0003",
    "updateDate": "2018-02-23T00:00:00.0Z",
    "titleText": "Today's Motivation",
    "mainText": "This is number three.",
    "redirectionUrl": "#"
  }
]

My first thought was to create a date key in each item and use an if statement to compare the dates. Is that the best approach or does anyone have a better idea? As you can see in the 3rd item, I used a future date to see if Alexa would ignore it until that date, but she still reads it even though today is the 21st.

1 Comment
2018/02/22
21:12 UTC

1

A 16-year-old developer turned Alexa into an AI controller (Tutorial in video comments)

0 Comments
2017/01/11
19:21 UTC

Back To Top