From ea6397a1b238ee84f8cfbbf5e08a665a7d69bde8 Mon Sep 17 00:00:00 2001
From: realgnark <96846388+realgnark@users.noreply.github.com>
Date: Wed, 29 Dec 2021 22:53:07 +0100
Subject: [PATCH 1/2] Update ccu-connection.js
---
nodes/ccu-connection.js | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/nodes/ccu-connection.js b/nodes/ccu-connection.js
index 6a6216d..b697223 100644
--- a/nodes/ccu-connection.js
+++ b/nodes/ccu-connection.js
@@ -414,6 +414,20 @@ module.exports = function (RED) {
init: true,
ping: false // Todo ?
},
+ 'CCU-Jack': {
+ conf: 'jack',
+ rpc: xmlrpc,
+ port: 2121,
+ path: 'RPC3',
+ protocol: 'http',
+ auth: config.authentication,
+ user: config.username,
+ pass: config.password,
+ tls: config.tls,
+ inSecure: config.inSecure,
+ init: true,
+ ping: false // Todo ?
+ },
CUxD: {
conf: 'cuxd',
rpc: binrpc,
From 4c079122bea8183fc5066af1e34328a260e65d21 Mon Sep 17 00:00:00 2001
From: realgnark <96846388+realgnark@users.noreply.github.com>
Date: Wed, 29 Dec 2021 22:57:09 +0100
Subject: [PATCH 2/2] Update ccu-connection.html
---
nodes/ccu-connection.html | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/nodes/ccu-connection.html b/nodes/ccu-connection.html
index 33fa651..cb5ca81 100644
--- a/nodes/ccu-connection.html
+++ b/nodes/ccu-connection.html
@@ -10,6 +10,7 @@
iprfEnabled: {value: true},
virtEnabled: {value: true},
bcwiEnabled: {value: false},
+ jackEnabled: {value: false},
cuxdEnabled: {value: false},
regaPoll: {value: true},
@@ -79,6 +80,7 @@
$('#node-config-input-iprfEnabled').prop('checked', ccu.interfaces['HmIP-RF']);
$('#node-config-input-virtEnabled').prop('checked', ccu.interfaces.VirtualDevices);
$('#node-config-input-bcwiEnabled').prop('checked', ccu.interfaces['BidCos-Wired']);
+ $('#node-config-input-jackEnabled').prop('checked', ccu.interfaces['CCU-Jack']);
$('#node-config-input-cuxdEnabled').prop('checked', ccu.interfaces.CuXD);
}
});
@@ -168,6 +170,7 @@
+
@@ -253,6 +256,7 @@