-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Device is unresponsive #70
Comments
did you solve this yet? |
I think device will remain unresponsive because we are dealing with virtual device. I am going to try it with yee-light open API device. |
Do you know how i can control devices connected to Arduino with this skill? I don't know how to send data to the mCu from the skill. |
This could be because the ReportState directive needs to be implemented. Check https://developer.amazon.com/docs/device-apis/alexa-interface.html#reportstate and https://developer.amazon.com/docs/smarthome/state-reporting-for-a-smart-home-skill.html for more details. |
Me too facing this issue. Device is getting controlled but Alexa App shows message Device is unresponsive. |
I am having the same issue, when the device is controlled it succeeds. But I get the warning device is unresponsive. I've implemented the ReportState and I believe that works - when I open the app the state of the device is fetched. @pradipshenolkar did it solve your problems? |
I am facing the same issue since long. Tried all the possible solutions to resolve an issue but couldn't.Although all the devices are included in the same group it is detecting only two devices out of four. I have connected lights through Wemo Device. |
Similar or same problem here.
@AnimeshBote I am using a sort of virtual devices, too. I am emulating a real device via API. In theory it shouldn't make any difference for Alexa. Did you find any problem with virtual devices? |
I have used SmartHome skill and implemented "PowerController" and "StateReport" interfaces for Bulb. In alexa app display actual state of the Bulb. Reference Link: https://developer.amazon.com/en-US/docs/alexa/device-apis/alexa-powercontroller.html Note: I have used Alexa V3 APIs. |
@mayank-kanzariya can you share some code for that two functions? i am also using virtual device and API v3. I want to know the flow. What i mean is after sending a TurnOn request for powerController do i have to send StateReport or i have to wait for ReportState request? |
please solve my query am trying to setup the device responce but not working var https = require('https'); exports.handler = function (request, context) {
}; function fbGet(key){ function fbPut(key, value){
}); //-------Helper Methods---------// function buildSpeechletResponse(output, shouldEndSession) { function buildResponse(speechletResponse) { am requesting to please solve my problem what actually i want to do the |
I was trying to wake up my desktop computer using the WakeOnLan controller. After quite a bit of struggle the skill started working but Alexa's voice response was that the device wasn't responding. After quite a bit of trial and error, I was able to solve this issue by not sending a deferred response. I removed deferred response altogether and it started working. |
I have written response message correctly. Execution is successful for lambda event request.When I test it on emulator it returns me ok status but in the alexa app under device status it doesn't show updated status. It remains off and also I get device is unresponsive message. Please help with this issue.
The text was updated successfully, but these errors were encountered: