We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
node-red-contrib-alexa-home/alexa/alexa-home.js
Lines 144 to 154 in 008baa9
The . should be deleted from the node ID.
.
const nodeid = uuid.replace('.', '').split("");
Or filter to be sure to only have hexadecimals characters.
PS: Should be great to add a field to set this node ID to not loose all the routines on new installation.
node-red-contrib-alexa-home/alexa/templates/setup.xml
Line 7 in 008baa9
<URLBase>{{{baseUrl}}}</URLBase> <device> <deviceType>urn:schemas-upnp-org:device:Basic:1</deviceType> <friendlyName>Amazon-Echo-NodeRed-Bridge {{{baseUrl}}}</friendlyName>
In alexa-hub.js it ends with a 0 who is shown when scanning SSDP devices.
alexa-hub.js
node-red-contrib-alexa-home/alexa/alexa-hub.js
Line 148 in 3c1c8e8
In the setup XML displayed it ends with the controller ID.
node-red-contrib-alexa-home/alexa/alexa-home-controller.js
Line 318 in 3c1c8e8
But I don't know If this could be an issue. As we can only have one on port 80, In alexa-hub.js I replaced node.id with node.controller.id
node.id
node.controller.id
The text was updated successfully, but these errors were encountered:
Thanks for you input - can you create a pull request for your changes that everybody is able to use these?
Sorry, something went wrong.
The nodeId is stored in a configuration file on disk, so this should not be lost anyway
No branches or pull requests
1. Unique device ID is generated with a dot for some devices and Echo does not detect them:
node-red-contrib-alexa-home/alexa/alexa-home.js
Lines 144 to 154 in 008baa9
The
.
should be deleted from the node ID.Or filter to be sure to only have hexadecimals characters.
PS: Should be great to add a field to set this node ID to not loose all the routines on new installation.
2. Add 3 curly braces so mustache does not encode the URL:
node-red-contrib-alexa-home/alexa/templates/setup.xml
Line 7 in 008baa9
3. The bridge ID is not the same
In
alexa-hub.js
it ends with a 0 who is shown when scanning SSDP devices.node-red-contrib-alexa-home/alexa/alexa-hub.js
Line 148 in 3c1c8e8
In the setup XML displayed it ends with the controller ID.
node-red-contrib-alexa-home/alexa/alexa-home-controller.js
Line 318 in 3c1c8e8
But I don't know If this could be an issue. As we can only have one on port 80, In
alexa-hub.js
I replacednode.id
withnode.controller.id
The text was updated successfully, but these errors were encountered: