Skip to content
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

Fix GarageDoorOpenerAdvanced #158

Merged
merged 5 commits into from
Mar 16, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Config Init fix
fixes config read
  • Loading branch information
c-o-m-m-a-n-d-e-r committed Oct 23, 2019
commit c32d40c0a1da1de1037d84b5ccaa99c1bfc8eee8
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ function KNXPlatform(log, config, newAPI) {
* - GroupAddresses object
* - Devices Object
*/
globs.knxd = this.config.knxd || true;
globs.knxd = this.config.knxd;
globs.knxd_ip = this.config.knxd_ip;
globs.knxd_port = this.config.knxd_port || 6720;
globs.log = log;
@@ -456,7 +456,7 @@ KNXPlatform.prototype.configure = function() {
}

// we're done, now issue the startup read requests to the bus
require('./lib/knxaccess.js').knxreadhash(globs.readRequests);
KNXAccess.knxreadhash(globs.readRequests);

};