-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ var arcam = {}; | |
var roon = new RoonApi({ | ||
extension_id: 'org.pruessmann.roon.arcam', | ||
display_name: 'Arcam AVR390/550/850/AV860/SR250', | ||
display_version: '0.0.6', | ||
display_version: '0.0.7', | ||
publisher: 'Doc Bobo', | ||
email: '[email protected]', | ||
website: 'https://github.com/docbobo/roon-extension-arcam', | ||
|
@@ -74,6 +74,7 @@ function setup_arcam_connection(host, keepalive) { | |
if (arcam.client) { arcam.client.disconnect(); delete(arcam.client); } | ||
|
||
if (!host) { | ||
debug("Not configured, please check settings."); | ||
svc_status.set_status("Not configured, please check settings.", true); | ||
} else { | ||
debug("Connecting to receiver..."); | ||
|
@@ -128,6 +129,7 @@ function setup_arcam_connection(host, keepalive) { | |
}); | ||
}, keepalive); | ||
} | ||
debug("setup_arcam_connection (" + host + ") - done." ); | ||
} | ||
|
||
function create_volume_control(arcam) { | ||
|
@@ -221,4 +223,5 @@ function create_volume_control(arcam) { | |
|
||
setup_arcam_connection(mysettings.hostname, mysettings.keepalive); | ||
|
||
debug("Starting Roon Discovery." ); | ||
roon.start_discovery(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "roon-extension-arcam", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "Volume Control extension to control Arcam AV receivers AVR390/550/850/AV860/SR250 via network.", | ||
"main": "app.js", | ||
"author": "Doc Bobo <[email protected]> (https://blog.pruessmann.org/)", | ||
|