node-red-contrib-knx-ultimate 2.4.2 → 2.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/KNXEngine/src/dptlib/dpt275.js +0 -1
- package/nodes/commonFunctions.js +35 -30
- package/nodes/knxUltimate.html +25 -23
- package/nodes/locales/de-disabled/knxUltimate.json +18 -19
- package/nodes/locales/en-US/knxUltimate.json +2 -3
- package/nodes/locales/it-disabled/knxUltimate.json +18 -19
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
-
**Version 2.4.
|
|
9
|
+
**Version 2.4.4** - Jan 2024<br/>
|
|
10
10
|
- NEW: Added KNX Datapoint 275.100<br/>
|
|
11
11
|
- HUE Light: fixed https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/317<br/>
|
|
12
12
|
- HUE Light: corrected the 7.600 kelvin range https://github.com/Supergiovane/node-red-contrib-knx-ultimate/issues/316<br/>
|
package/nodes/commonFunctions.js
CHANGED
|
@@ -251,11 +251,11 @@ module.exports = function (RED) {
|
|
|
251
251
|
// 12/08/2021 Endpoint for deleting the GA persistent file for the current gateway
|
|
252
252
|
RED.httpAdmin.get("/deletePersistGAFile", RED.auth.needsPermission("knxUltimate-config.read"), (req, res) => {
|
|
253
253
|
if (typeof req.query.serverId !== "undefined" && req.query.serverId !== null && req.query.serverId !== "") {
|
|
254
|
-
const serverId = RED.nodes.getNode(req.query.serverId); // Retrieve node.id of the config node.
|
|
255
|
-
const sFile = path.join(serverId.userDir, "knxpersistvalues", `knxpersist${req.query.serverId}.json`);
|
|
256
254
|
try {
|
|
255
|
+
const serverId = RED.nodes.getNode(req.query.serverId); // Retrieve node.id of the config node.
|
|
256
|
+
const sFile = path.join(serverId.userDir, "knxpersistvalues", `knxpersist${req.query.serverId}.json`);
|
|
257
257
|
fs.unlinkSync(sFile);
|
|
258
|
-
} catch (error) { }
|
|
258
|
+
} catch (error) { res.json({ error: error.stack }); }
|
|
259
259
|
res.json({ error: "No error" });
|
|
260
260
|
} else {
|
|
261
261
|
res.json({ error: "No serverId specified" });
|
|
@@ -367,42 +367,47 @@ module.exports = function (RED) {
|
|
|
367
367
|
|
|
368
368
|
|
|
369
369
|
// 15/09/2020 Supergiovane, read datapoint help usage
|
|
370
|
-
RED.httpAdmin.get("/knxUltimateDptsGetHelp",
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
370
|
+
RED.httpAdmin.get("/knxUltimateDptsGetHelp", (req, res) => {
|
|
371
|
+
try {
|
|
372
|
+
|
|
373
|
+
const serverId = RED.nodes.getNode(req.query.serverId); // Retrieve node.id of the config node.
|
|
374
|
+
const sDPT = req.query.dpt.split(".")[0]; // Takes only the main type
|
|
375
|
+
let jRet;
|
|
376
|
+
if (sDPT === "0") {
|
|
377
|
+
// Special fake datapoint, meaning "Universal Mode"
|
|
378
|
+
jRet = {
|
|
379
|
+
help: `// KNX-Ultimate set as UNIVERSAL NODE
|
|
378
380
|
// Example of a function that sends a message to the KNX-Ultimate
|
|
379
381
|
msg.destination = "0/0/1"; // Set the destination
|
|
380
382
|
msg.payload = false; // issues a write or response (based on the options Telegram type above) to the KNX bus
|
|
381
383
|
msg.event = "GroupValue_Write"; // "GroupValue_Write" or "GroupValue_Response", overrides the option Telegram type above.
|
|
382
384
|
msg.dpt = "1.001"; // for example "1.001", overrides the Datapoint option. (Datapoints can be sent as 9 , "9" , "9.001" or "DPT9.001")
|
|
383
385
|
return msg;`,
|
|
384
|
-
|
|
385
|
-
};
|
|
386
|
-
res.json(jRet);
|
|
387
|
-
return;
|
|
388
|
-
}
|
|
389
|
-
jRet = {
|
|
390
|
-
help: "NO",
|
|
391
|
-
helplink: "https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome",
|
|
392
|
-
};
|
|
393
|
-
const dpts = Object.entries(dptlib).filter(onlyDptKeys);
|
|
394
|
-
for (let index = 0; index < dpts.length; index++) {
|
|
395
|
-
if (dpts[index][0].toUpperCase() === `DPT${sDPT}`) {
|
|
396
|
-
jRet = {
|
|
397
|
-
help: dpts[index][1].basetype.hasOwnProperty("help") ? dpts[index][1].basetype.help : "NO",
|
|
398
|
-
helplink: dpts[index][1].basetype.hasOwnProperty("helplink")
|
|
399
|
-
? dpts[index][1].basetype.helplink
|
|
400
|
-
: "https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome",
|
|
386
|
+
helplink: "https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki",
|
|
401
387
|
};
|
|
402
|
-
|
|
388
|
+
res.json(jRet);
|
|
389
|
+
return;
|
|
390
|
+
}
|
|
391
|
+
jRet = {
|
|
392
|
+
help: "NO",
|
|
393
|
+
helplink: "https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome",
|
|
394
|
+
};
|
|
395
|
+
const dpts = Object.entries(dptlib).filter(onlyDptKeys);
|
|
396
|
+
for (let index = 0; index < dpts.length; index++) {
|
|
397
|
+
if (dpts[index][0].toUpperCase() === `DPT${sDPT}`) {
|
|
398
|
+
jRet = {
|
|
399
|
+
help: dpts[index][1].basetype.hasOwnProperty("help") ? dpts[index][1].basetype.help : "NO",
|
|
400
|
+
helplink: dpts[index][1].basetype.hasOwnProperty("helplink")
|
|
401
|
+
? dpts[index][1].basetype.helplink
|
|
402
|
+
: "https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome",
|
|
403
|
+
};
|
|
404
|
+
break;
|
|
405
|
+
}
|
|
403
406
|
}
|
|
407
|
+
res.json(jRet);
|
|
408
|
+
} catch (error) {
|
|
409
|
+
res.json({ error: error.stack });
|
|
404
410
|
}
|
|
405
|
-
res.json(jRet);
|
|
406
411
|
});
|
|
407
412
|
|
|
408
413
|
RED.httpAdmin.post("/banana", RED.auth.needsPermission("write"), (req, res) => {
|
package/nodes/knxUltimate.html
CHANGED
|
@@ -50,21 +50,6 @@
|
|
|
50
50
|
var oNodeServer = RED.nodes.node($("#node-input-server").val()); // Store the config-node
|
|
51
51
|
$("#tabs").tabs();
|
|
52
52
|
|
|
53
|
-
if (oNodeServer === undefined) {
|
|
54
|
-
// Show the DEPLOY FIRST message
|
|
55
|
-
$("#divDeployFirst").show();
|
|
56
|
-
$("#divMain").hide();
|
|
57
|
-
} else {
|
|
58
|
-
$("#divDeployFirst").hide();
|
|
59
|
-
$("#divMain").show();
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
if (oNodeServer.knxSecureSelected) {
|
|
63
|
-
$("#divknxsecure").show();
|
|
64
|
-
} else {
|
|
65
|
-
$("#divknxsecure").hide();
|
|
66
|
-
}
|
|
67
|
-
|
|
68
53
|
// 31/03/2020 Search Helper
|
|
69
54
|
function fullSearch(sourceText, searchString) {
|
|
70
55
|
// This searches for all words in a string
|
|
@@ -123,17 +108,34 @@
|
|
|
123
108
|
// 19/02/2020 Used to alert the user if the CSV file has not been loaded and to get the server sooner als deploy
|
|
124
109
|
// ###########################
|
|
125
110
|
$("#node-input-server").change(function () {
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
111
|
+
checkUI();
|
|
112
|
+
});
|
|
113
|
+
function checkUI() {
|
|
114
|
+
oNodeServer = RED.nodes.node($("#node-input-server").val());
|
|
115
|
+
if (oNodeServer === undefined) {
|
|
116
|
+
// Show the DEPLOY FIRST message
|
|
117
|
+
$("#divDeployFirst").show();
|
|
118
|
+
$("#divMain").hide();
|
|
119
|
+
} else {
|
|
120
|
+
$("#divDeployFirst").hide();
|
|
121
|
+
$("#divMain").show();
|
|
122
|
+
try {
|
|
123
|
+
if (typeof oNodeServer.csv !== "undefined" && oNodeServer.csv !== "") {
|
|
124
|
+
$("#isETSFileLoaded").val("si");
|
|
125
|
+
} else {
|
|
126
|
+
$("#isETSFileLoaded").val("no");
|
|
127
|
+
}
|
|
128
|
+
} catch (error) {
|
|
131
129
|
$("#isETSFileLoaded").val("no");
|
|
132
130
|
}
|
|
133
|
-
|
|
134
|
-
|
|
131
|
+
if (oNodeServer.knxSecureSelected) {
|
|
132
|
+
$("#divknxsecure").show();
|
|
133
|
+
} else {
|
|
134
|
+
$("#divknxsecure").hide();
|
|
135
|
+
}
|
|
135
136
|
}
|
|
136
|
-
}
|
|
137
|
+
}
|
|
138
|
+
checkUI();
|
|
137
139
|
// ###########################
|
|
138
140
|
|
|
139
141
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"knxUltimate": {
|
|
3
|
-
"deployfirst": "BITTE ERSTELLEN DEIN ERSTES GATEWAY
|
|
4
|
-
"helplink"
|
|
3
|
+
"deployfirst": "BITTE ERSTELLEN DEIN ERSTES GATEWAY.",
|
|
4
|
+
"helplink": " <i class=\"fa fa-question-circle\"></i> <a target=\"_blank\" href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/de-2.-Node-Configuration\"><u>Hilfe Konfiguration</u></a>",
|
|
5
5
|
"title": "KNX Gerät",
|
|
6
6
|
"properties": {
|
|
7
7
|
"node-input-server": "Gateway",
|
|
@@ -27,27 +27,26 @@
|
|
|
27
27
|
"node-input-formatnegativevalue": "Negativ",
|
|
28
28
|
"node-input-formatdecimalsvalue": "Dezimalstellen",
|
|
29
29
|
"node-input-passthrough": "Passthrough eingang msg"
|
|
30
|
-
|
|
31
30
|
},
|
|
32
31
|
"placeholder": {
|
|
33
|
-
"leaveempty":"Leer lassen, um die Gruppenadresse zu verwenden",
|
|
34
|
-
"notifyreadrequestalsorespondtobusdefaultvalueifnotinitialized"
|
|
32
|
+
"leaveempty": "Leer lassen, um die Gruppenadresse zu verwenden",
|
|
33
|
+
"notifyreadrequestalsorespondtobusdefaultvalueifnotinitialized": "Ex: 0 für false, 1 für true, andernfalls jeder Wert"
|
|
35
34
|
},
|
|
36
35
|
"advanced": {
|
|
37
|
-
"Advancedoptions":"Erweiterte Optionen",
|
|
38
|
-
"Formatting":"Benutzerdefinierte Formatierung INPUT (Telegramme vom KNX-Bus)",
|
|
36
|
+
"Advancedoptions": "Erweiterte Optionen",
|
|
37
|
+
"Formatting": "Benutzerdefinierte Formatierung INPUT (Telegramme vom KNX-Bus)",
|
|
39
38
|
"OUTPUT": "AUSGANG (sendet ein Telegramm an den KNX-Bus)",
|
|
40
39
|
"INPUT": "EINGANG (Telegramm vom KNX-Bus lesen)",
|
|
41
|
-
"NUMERICVALUES":"NUMERISCHE WERTE (Operationen werden in der richtigen Reihenfolge ausgeführt)",
|
|
42
|
-
"noETSWarning":"Sie haben die ETS-CSV-Datei nicht importiert. <br/> Die Node arbeitet als blinder Sender / Empfänger. <a href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/de-2.-Node-Configuration\" target='_blank'>Klicken Sie hier für die Hilfe.</a>.",
|
|
43
|
-
"notify-DPT3007":"Du haßt ein relatives DIM ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Dimming'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
44
|
-
"notify-DPT18001":"Du haßt Szene Datenpunkt ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Control-a-scene-actuator'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
45
|
-
"notify-NoETSFile":"Der Universalmodus benötigt eine gültige ETS-Datei, um Datentypen dekodieren und Gerätenamen ausgeben zu können. Bitte fügen Sie die ETS-Datei in den Konfigurationsknoten ein. Wenn Sie keine ETS-Datei verwenden, fungiert der Knoten als blinder Empfänger (mit automatischer Dekondierung der Datagramme), Sie müssen jedoch den Datentyp (neben dem Wert) in der Eingabenachricht übergeben, um etwas an den KNX-BUS senden zu können."
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
40
|
+
"NUMERICVALUES": "NUMERISCHE WERTE (Operationen werden in der richtigen Reihenfolge ausgeführt)",
|
|
41
|
+
"noETSWarning": "Sie haben die ETS-CSV-Datei nicht importiert. <br/> Die Node arbeitet als blinder Sender / Empfänger. <a href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/de-2.-Node-Configuration\" target='_blank'>Klicken Sie hier für die Hilfe.</a>.",
|
|
42
|
+
"notify-DPT3007": "Du haßt ein relatives DIM ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Dimming'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
43
|
+
"notify-DPT18001": "Du haßt Szene Datenpunkt ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Control-a-scene-actuator'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
44
|
+
"notify-NoETSFile": "Der Universalmodus benötigt eine gültige ETS-Datei, um Datentypen dekodieren und Gerätenamen ausgeben zu können. Bitte fügen Sie die ETS-Datei in den Konfigurationsknoten ein. Wenn Sie keine ETS-Datei verwenden, fungiert der Knoten als blinder Empfänger (mit automatischer Dekondierung der Datagramme), Sie müssen jedoch den Datentyp (neben dem Wert) in der Eingabenachricht übergeben, um etwas an den KNX-BUS senden zu können.",
|
|
45
|
+
"notify-DPT232600": "Du haßt einen RGB Datenpunkt ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---RGB-Color'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
46
|
+
"notify-DPT251600": "Du haßt einen RGBW Datenpunkt ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---RGBW-Color-plus-White'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
47
|
+
"notify-DPT222": "Du haßt einen 3x16 Bit Datapoint ausgewählt. Bitte <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---DPT222'>klicke hier, um dieses Beispiel anzuzeigen</a> und lernen, wie den Payload handeln.",
|
|
48
|
+
"divVediEsempi": "<a href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome' target='_blank'><i class='fa fa-code'></i>  BITTE LESE HIER EINIGE BEISPIELE.</a>",
|
|
49
|
+
"Sample": "Hilfe beim Formatieren von ausgewähltem payload"
|
|
51
50
|
},
|
|
52
51
|
"selectlists": {
|
|
53
52
|
"Output_write": "Schreiben",
|
|
@@ -67,9 +66,9 @@
|
|
|
67
66
|
"Decimals_round2": "Auf 2 Dezimalstelle runden",
|
|
68
67
|
"Decimals_round3": "Auf 3 Dezimalstelle runden",
|
|
69
68
|
"Decimals_round4": "Auf 4 Dezimalstelle runden",
|
|
70
|
-
"Negatives_leave":"Unverändert lassen (Standard)",
|
|
69
|
+
"Negatives_leave": "Unverändert lassen (Standard)",
|
|
71
70
|
"Negatives_zero": "Null als Ausgabe",
|
|
72
|
-
"Negatives_abs": "Absolutwert ausgeben (Minuszeichen entfernen)"
|
|
71
|
+
"Negatives_abs": "Absolutwert ausgeben (Minuszeichen entfernen)",
|
|
73
72
|
"passthrough_No": "Nein",
|
|
74
73
|
"passthrough_Leave": "Ja",
|
|
75
74
|
"passthrough_OwnProp": "Ja, aber fügen Sie den eingangmsg in die msg.inputmessage des Ausgabenmsg ein"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"knxUltimate": {
|
|
3
|
-
"deployfirst": "PLEASE CREATE YOUR
|
|
4
|
-
"helplink"
|
|
3
|
+
"deployfirst": "PLEASE CREATE YOUR GATEWAY FIRST.",
|
|
4
|
+
"helplink": " <i class=\"fa fa-question-circle\"></i> <a target=\"_blank\" href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/2.-Node-Configuration\"><u>Help for configuration</u></a>",
|
|
5
5
|
"title": "KNX Device",
|
|
6
6
|
"properties": {
|
|
7
7
|
"node-input-server": "Gateway",
|
|
@@ -48,7 +48,6 @@
|
|
|
48
48
|
"notify-DPT222": "You selected an 3x16 Bit Datapoint. Please <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---DPT222'>click here to view this sample</a> and learn how to handle such payload.",
|
|
49
49
|
"divVediEsempi": "<a href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome' target='_blank'><i class='fa fa-code'></i>  PLEASE TAKE 5 MINUTES TO SEE SOME SAMPLES</a>",
|
|
50
50
|
"Sample": "Help example of the selected datapoint"
|
|
51
|
-
|
|
52
51
|
},
|
|
53
52
|
"selectlists": {
|
|
54
53
|
"Output_write": "Write",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"knxUltimate": {
|
|
3
|
-
"deployfirst": "PRIMA DI PROCEDERE DEVI CREARE IL TUO PRIMO GATEWAY
|
|
4
|
-
"helplink"
|
|
3
|
+
"deployfirst": "PRIMA DI PROCEDERE DEVI CREARE IL TUO PRIMO GATEWAY.",
|
|
4
|
+
"helplink": " <i class=\"fa fa-question-circle\"></i> <a target=\"_blank\" href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/it-2.-Node-Configuration\"><u>Aiuto per configurazione</u></a>",
|
|
5
5
|
"title": "Dispositivo KNX",
|
|
6
6
|
"properties": {
|
|
7
7
|
"node-input-server": "Gateway",
|
|
@@ -27,27 +27,26 @@
|
|
|
27
27
|
"node-input-formatnegativevalue": "Negativi",
|
|
28
28
|
"node-input-formatdecimalsvalue": "Decimali",
|
|
29
29
|
"node-input-passthrough": "Passa msg di ingresso sull'uscita"
|
|
30
|
-
|
|
31
30
|
},
|
|
32
31
|
"placeholder": {
|
|
33
|
-
"leaveempty":"Lascia vuoto per usare l'indirizzo di gruppo",
|
|
34
|
-
"notifyreadrequestalsorespondtobusdefaultvalueifnotinitialized"
|
|
35
|
-
"noETSWarning":"Non hai importato il file ETS. <br/> Il nodo tenterà di codificare/decodificare i telegrammi. <a href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/it-2.-Node-Configuration\" target='_blank'>Clicca qui per vedere l'help.</a>."
|
|
32
|
+
"leaveempty": "Lascia vuoto per usare l'indirizzo di gruppo",
|
|
33
|
+
"notifyreadrequestalsorespondtobusdefaultvalueifnotinitialized": "Es: 0 per false, 1 per true, altrimenti qualsiasi valore",
|
|
34
|
+
"noETSWarning": "Non hai importato il file ETS. <br/> Il nodo tenterà di codificare/decodificare i telegrammi. <a href=\"https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/it-2.-Node-Configuration\" target='_blank'>Clicca qui per vedere l'help.</a>."
|
|
36
35
|
},
|
|
37
36
|
"advanced": {
|
|
38
|
-
"Advancedoptions":"Opzioni avanzate",
|
|
39
|
-
"Formatting":"Formatta INPUT (datagrammi in arrivo dal BUS KNX)",
|
|
37
|
+
"Advancedoptions": "Opzioni avanzate",
|
|
38
|
+
"Formatting": "Formatta INPUT (datagrammi in arrivo dal BUS KNX)",
|
|
40
39
|
"OUTPUT": "OUTPUT (invio datagrammi sul bus KNX)",
|
|
41
40
|
"INPUT": "INPUT (ricezione datagrammi dal bus KNX)",
|
|
42
|
-
"NUMERICVALUES":"VALORI NUMERICI (le operazioni vengono eseguite in questo ordine)",
|
|
43
|
-
"notify-DPT3007":"Hai selezionato un DIM relativo. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Dimming'>clicca qui per vedere un esempio</a> e capire come gestire il relativo payload.",
|
|
44
|
-
"notify-DPT18001":"Hai selezionato un datapoint scena. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Control-a-scene-actuator'>clicca qui per vedere un esempio</a> per capire come gestire il relatico payload.",
|
|
45
|
-
"notify-NoETSFile":"La modalità universale richiede un file ETS valido per poter decodificare i tipi di dati e generare i nomi dei dispositivi. Incolla il file ETS nel nodo di configurazione. Se non usi il file ETS, il nodo funzionerà come ricevitore cieco (con decoding automatico dei datagrammi) ma è necessario passare il tipo di dati (oltre al valore) nel messaggio di input, per poter inviare qualcosa al BUS KNX."
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
41
|
+
"NUMERICVALUES": "VALORI NUMERICI (le operazioni vengono eseguite in questo ordine)",
|
|
42
|
+
"notify-DPT3007": "Hai selezionato un DIM relativo. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Dimming'>clicca qui per vedere un esempio</a> e capire come gestire il relativo payload.",
|
|
43
|
+
"notify-DPT18001": "Hai selezionato un datapoint scena. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---Control-a-scene-actuator'>clicca qui per vedere un esempio</a> per capire come gestire il relatico payload.",
|
|
44
|
+
"notify-NoETSFile": "La modalità universale richiede un file ETS valido per poter decodificare i tipi di dati e generare i nomi dei dispositivi. Incolla il file ETS nel nodo di configurazione. Se non usi il file ETS, il nodo funzionerà come ricevitore cieco (con decoding automatico dei datagrammi) ma è necessario passare il tipo di dati (oltre al valore) nel messaggio di input, per poter inviare qualcosa al BUS KNX.",
|
|
45
|
+
"notify-DPT232600": "Hai selezionato un datapoint RGB. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---RGB-Color'>clicca qui per vedere un esempio</a> per capire come gestire il relatico payload.",
|
|
46
|
+
"notify-DPT251600": "Hai selezionato un datapoint RGBW. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---RGBW-Color-plus-White'>clicca qui per vedere un esempio</a> per capire come gestire il relatico payload.",
|
|
47
|
+
"notify-DPT222": "Hai selezionato un datapoint 3x16 Bit. Per favore <a target='_blank' href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---DPT222'>clicca qui per vedere un esempio</a> per capire come gestire il relatico payload.",
|
|
48
|
+
"divVediEsempi": "<a href='https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-SamplesHome' target='_blank'><i class='fa fa-code'></i>  PER FAVORE PRENDITI 5 MINUTI PER VEDERE QUALCHE ESEMPIO QUI.</a>",
|
|
49
|
+
"Sample": "Esempio del payload del datapoint selezionato"
|
|
51
50
|
},
|
|
52
51
|
"selectlists": {
|
|
53
52
|
"Output_write": "Scrittura",
|
|
@@ -67,12 +66,12 @@
|
|
|
67
66
|
"Decimals_round2": "Arrotonda ad 2 decimali",
|
|
68
67
|
"Decimals_round3": "Arrotonda ad 3 decimali",
|
|
69
68
|
"Decimals_round4": "Arrotonda ad 4 decimali",
|
|
70
|
-
"Negatives_leave":"Lascia invariato (default)",
|
|
69
|
+
"Negatives_leave": "Lascia invariato (default)",
|
|
71
70
|
"Negatives_zero": "Invia zero",
|
|
72
71
|
"Negatives_abs": "Invia valore assoluto (togli il segno -)",
|
|
73
72
|
"passthrough_No": "No",
|
|
74
73
|
"passthrough_Leave": "Si",
|
|
75
|
-
"passthrough_OwnProp": "Si, ma metti il msg in ingresso, nella proprietà msg.inputmessage del messaggio in uscita"
|
|
74
|
+
"passthrough_OwnProp": "Si, ma metti il msg in ingresso, nella proprietà msg.inputmessage del messaggio in uscita"
|
|
76
75
|
}
|
|
77
76
|
}
|
|
78
77
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=16.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.4.
|
|
6
|
+
"version": "2.4.4",
|
|
7
7
|
"description": "Control your KNX intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control and ETS group address importer. Easy to use and highly configurable.",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"binary-parser": "2.2.1",
|