That’s the Log entry… it looks like your message is not getting in.
Edit: Please post a green snapshot and I will try to import it.
That’s the Log entry… it looks like your message is not getting in.
Edit: Please post a green snapshot and I will try to import it.
I should have asked this earlier, how are you sending the actual message? Are the messages hard coded or they vary?
Not sure what you mean by hard coded. I’m sending a hashtag sms message to IFTTT. So any message I send to the ifttt number with the # is supposed (I thought) work.
Do you do something similar that I could replicate?
This is what I have set up that I play with… I text the IFTTT number with any message and Alexa will speak it. I don’t use the hashtag though.
I see what’s happening now, should have figured it out earlier. When the switch executes, $args.content is no longer valid so you end up with a ‘null’ which sounds like ‘No’ when Alexa says it.
Try this one… it spoke it twice in my test, might be a fluke Oh, you need to change the trigger back to what your were using instead of alexatest
Having the messageText = $args.content up top initializes it each time the piston runs. When the switch turns on, it initializes the messageText variable again but at that time $args.content is null, which is why Alexa keeps saying NO lol.