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
In the GarageDoorOpener service there is no "OPEN" command for the topic 'setTaget'
I included the following line in service.json and set it to value 0 in the config file:
"GarageDoorOpener": { "topic": [ {"name": "setDoor"}, ... ], "payload": [ {"name": "doorOpen", "optional": true}, {"name": "doorClosed", "optional": true}, ... ] },
the file services/GarageDoorOpene.js should also be expanded with:
if (typeof settings.payload.doorOpen === 'undefined') { settings.payload.doorOpen = Characteristic.CurrentDoorState.OPEN; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the GarageDoorOpener service there is no "OPEN" command for the topic 'setTaget'
I included the following line in service.json and set it to value 0 in the config file:
"GarageDoorOpener": {
"topic": [
{"name": "setDoor"},
...
],
"payload": [
{"name": "doorOpen", "optional": true},
{"name": "doorClosed", "optional": true},
...
]
},
the file services/GarageDoorOpene.js should also be expanded with:
The text was updated successfully, but these errors were encountered: