node-red-contrib-knx-ultimate 3.2.15 → 3.2.17

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 CHANGED
@@ -6,6 +6,13 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 3.2.17** - October 2024<br/>
10
+ - Hue devices: globally check for boundary limits, when calculating brightness and colorYX from an RGB or HEX KNX input.<br/>
11
+
12
+ **Version 3.2.16** - October 2024<br/>
13
+ - Hue devices: fixed an issue with the ETS CSV file, when a HUE device's GA isn't contained in the CSV.<br/>
14
+ - Hue Light: fixed an issue in setting RGB to 255,255,255, caused by an out of boundary of the calculater brightness value.<br/>
15
+
9
16
  **Version 3.2.15** - October 2024<br/>
10
17
  - Hue Light: fixed an issue with old lightstrip causing an error in setting mirek.<br/>
11
18
 
package/README.md CHANGED
@@ -77,7 +77,7 @@ Please subscribe to the [Youtube channel](https://www.youtube.com/playlist?list=
77
77
  | KNX Secure Tunnelling | ![](https://placehold.co/200x20/orange/white?text=UNDER+DEVELOPMENT) |
78
78
  | KNX Secure Routing | ![](https://placehold.co/200x20/red/white?text=NO) |
79
79
  | KNX 3rd PARTY IOT API client | ![](https://placehold.co/200x20/red/white?text=DELAYED) |
80
- | Matter | ![](https://placehold.co/200x20/blue/white?text=UNDER+BRAINSTORMING) |
80
+ | Matter | ![](https://placehold.co/200x20/red/white?text=NO+TOO+IMMATURE) |
81
81
 
82
82
  <br/>
83
83
 
@@ -790,8 +790,17 @@ module.exports = (RED) => {
790
790
  .filter((_input) => _input.notifywrite === true)
791
791
  .forEach((_input) => {
792
792
 
793
- // 19/03/2020 in the middle of coronavirus. Whole italy is red zone, closed down. Scene Controller implementation
794
- if (_input.hasOwnProperty("isSceneController")) {
793
+ // 21/10/2024 check wether is a HUE device
794
+ if (_input.type.includes('knxUltimateHue')) {
795
+ const msg = {
796
+ knx: {
797
+ event: _evt,
798
+ destination: _dest,
799
+ rawValue: _rawValue,
800
+ }
801
+ };
802
+ _input.handleSend(msg);
803
+ } else if (_input.hasOwnProperty("isSceneController")) {// 19/03/2020 in the middle of coronavirus. Whole italy is red zone, closed down. Scene Controller implementation
795
804
  // 12/08/2020 Check wether is a learn (save) command or a activate (play) command.
796
805
  if (_dest === _input.topic || _dest === _input.topicSave) {
797
806
  // Prepare the two messages to be evaluated directly into the Scene Controller node.
@@ -881,8 +890,8 @@ module.exports = (RED) => {
881
890
  // reject("error"); // rejected
882
891
  // }).then(function () { }).catch(function () { });
883
892
  }
884
- } else if (_input.listenallga === true) {
885
893
 
894
+ } else if (_input.listenallga === true) {
886
895
  // 25/10/2019 TRY TO AUTO DECODE IF Group address not found in the CSV
887
896
  const msg = buildInputMessage({
888
897
  _srcGA: _src,
@@ -433,7 +433,6 @@ module.exports = function (RED) {
433
433
  }
434
434
  const retXY = hueColorConverter.ColorConverter.calculateXYFromRGB(msg.payload.red, msg.payload.green, msg.payload.blue, gamut);
435
435
  const bright = hueColorConverter.ColorConverter.getBrightnessFromRGBOrHex(msg.payload.red, msg.payload.green, msg.payload.blue);
436
- // state = bright > 0 ? { on: { on: true }, dimming: { brightness: bright }, color: { xy: retXY } } : { on: { on: false } }
437
436
  state = { dimming: { brightness: bright }, color: { xy: retXY } };
438
437
  if (node.currentHUEDevice === undefined) {
439
438
  // Grouped light
@@ -53,6 +53,13 @@ module.exports = {
53
53
  }
54
54
  xy[0] = precision(xy[0]);
55
55
  xy[1] = precision(xy[1]);
56
+
57
+ // Check boundary (min 0, max 1)
58
+ xy[0] = xy[0] < 0 ? 0 : xy[0];
59
+ xy[0] = xy[0] > 1 ? 1 : xy[0];
60
+ xy[1] = xy[1] < 0 ? 0 : xy[1];
61
+ xy[1] = xy[1] > 1 ? 1 : xy[1];
62
+
56
63
  return { x: xy[0], y: xy[1] };
57
64
  },
58
65
  };
@@ -15,7 +15,13 @@ class ColorConverter {
15
15
 
16
16
  const Ylum = Rlin * 0.2126 + Glin * 0.7156 + Blin * 0.0722; // convert to Luminance Y
17
17
 
18
- return Ylum ** 0.43 * 100; // Convert to lightness (0 to 100)
18
+ let ret = Ylum ** 0.43 * 100;// Convert to lightness (0 to 100)
19
+
20
+ // Boundary Check (min 0, max 100)
21
+ ret = ret < 0 ? 0 : ret;
22
+ ret = ret > 100 ? 100 : ret;
23
+
24
+ return ret;
19
25
  }
20
26
 
21
27
  static convert_1_255_ToPercentage(number) {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "3.2.15",
6
+ "version": "3.2.17",
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",
@@ -1,154 +0,0 @@
1
- START LOG FILE --------------------------------------------
2
- -> 10/5/2024, 12:14:53 PM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
3
- -> 10/5/2024, 12:14:53 PM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
4
- -> 10/5/2024, 12:14:53 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
5
- -> 10/5/2024, 12:14:53 PM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.
6
- -> 10/5/2024, 12:16:37 PM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
7
- -> 10/5/2024, 12:16:37 PM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
8
- -> 10/5/2024, 12:16:37 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
9
- -> 10/5/2024, 12:16:37 PM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
10
- -> 10/5/2024, 12:16:37 PM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
11
- -> 10/5/2024, 12:16:40 PM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
12
- -> 10/5/2024, 12:16:40 PM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
13
- -> 10/5/2024, 12:16:40 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
14
- -> 10/5/2024, 12:16:40 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
15
- -> 10/5/2024, 12:16:44 PM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
16
- -> 10/5/2024, 12:16:44 PM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
17
- -> 10/5/2024, 12:16:44 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
18
- -> 10/5/2024, 12:16:44 PM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
19
- -> 10/5/2024, 12:16:44 PM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
20
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
21
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
22
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
23
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
24
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
25
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
26
- -> 10/5/2024, 12:16:48 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
27
- -> 10/5/2024, 12:16:49 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 142
28
- -> 10/5/2024, 12:16:49 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
29
- -> 10/5/2024, 12:16:53 PM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
30
- -> 10/5/2024, 12:16:53 PM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
31
- -> 10/5/2024, 12:16:53 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
32
- -> 10/5/2024, 12:16:54 PM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
33
- -> 10/5/2024, 12:16:54 PM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
34
- -> 10/5/2024, 12:16:54 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
35
- -> 10/5/2024, 12:16:54 PM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
36
- -> 10/5/2024, 12:16:54 PM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
37
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
38
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
39
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
40
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
41
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
42
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
43
- -> 10/5/2024, 12:16:58 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
44
- -> 10/5/2024, 12:16:59 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 142
45
- -> 10/5/2024, 12:16:59 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
46
- -> 10/5/2024, 12:22:23 PM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
47
- -> 10/5/2024, 12:22:23 PM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
48
- -> 10/5/2024, 12:22:23 PM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
49
- -> 10/5/2024, 12:22:23 PM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.
50
- -> 10/7/2024, 8:22:33 AM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
51
- -> 10/7/2024, 8:22:33 AM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
52
- -> 10/7/2024, 8:22:33 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
53
- -> 10/7/2024, 8:22:33 AM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
54
- -> 10/7/2024, 8:22:33 AM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
55
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
56
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
57
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
58
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
59
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
60
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
61
- -> 10/7/2024, 8:22:37 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
62
- -> 10/7/2024, 8:22:38 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 160
63
- -> 10/7/2024, 8:22:38 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
64
- -> 10/7/2024, 8:37:07 AM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
65
- -> 10/7/2024, 8:37:07 AM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
66
- -> 10/7/2024, 8:37:07 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
67
- -> 10/7/2024, 8:37:07 AM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.
68
- -> 10/8/2024, 8:11:23 AM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
69
- -> 10/8/2024, 8:11:23 AM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
70
- -> 10/8/2024, 8:11:23 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
71
- -> 10/8/2024, 8:11:23 AM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
72
- -> 10/8/2024, 8:11:23 AM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
73
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
74
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
75
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
76
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
77
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
78
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
79
- -> 10/8/2024, 8:11:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
80
- -> 10/8/2024, 8:11:28 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 166
81
- -> 10/8/2024, 8:11:28 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
82
- -> 10/8/2024, 8:13:19 AM [knxUltimate <b3e73a4f0615889e>] NEW LOG SESSION --------------------------------------------
83
- -> 10/8/2024, 8:13:30 AM [knxUltimate <b3e73a4f0615889e>] [info] Close: node id b3e73a4f0615889e with topic temper has been removed from the server.
84
- -> 10/8/2024, 8:13:30 AM [knxUltimate <b3e73a4f0615889e>] NEW LOG SESSION --------------------------------------------
85
- -> 10/8/2024, 8:15:13 AM [knxUltimate-config <KNX Gateway senza csv>] [info] buildInputMessage: received a wrong datagram form KNX BUS, from device 15.15.22 Destination 5/6/7 Event GroupValue_Write GA's Datapoint 1.001 Devicename Topic 5/6/7 NodeID 08b25df88e6668d3
86
- -> 10/8/2024, 8:15:27 AM [knxUltimate-config <KNX Gateway senza csv>] [info] node.knxConnection.write: Payload: 21.5 GA:5/6/7 DPT:9.001 TypeError: value.toFixed is not a function
87
- at Object.formatAPDU (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/dptlib/dpt9.ts:21:18)
88
- at Object.populateAPDU (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/dptlib/index.ts:168:19)
89
- at KNXClient.getKNXDataBuffer (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/KNXClient.ts:378:10)
90
- at KNXClient.write (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/KNXClient.ts:615:26)
91
- at knxUltimateConfigNode.node.sendKNXTelegramToKNXEngine (/Users/massimosaccani/Documents/GitHub/node-red-contrib-knx-ultimate/nodes/knxUltimate-config.js:1253:30)
92
- at knxUltimate._inputCallback (/Users/massimosaccani/Documents/GitHub/node-red-contrib-knx-ultimate/nodes/knxUltimate.js:566:30)
93
- at /usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:214:26
94
- at Object.trigger (/usr/local/lib/node_modules/node-red/node_modules/@node-red/util/lib/hooks.js:166:13)
95
- at knxUltimate.Node._emitInput (/usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:206:11)
96
- at knxUltimate.Node.emit (/usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:190:25)
97
- -> 10/8/2024, 8:17:29 AM [knxUltimate <b3e73a4f0615889e>] [info] Close: node id b3e73a4f0615889e with topic 5/6/7 has been removed from the server.
98
- -> 10/8/2024, 8:17:29 AM [knxUltimate <b3e73a4f0615889e>] NEW LOG SESSION --------------------------------------------
99
- -> 10/8/2024, 8:17:31 AM [knxUltimate-config <KNX Gateway senza csv>] [info] node.knxConnection.write: Payload: 21.5 GA:5/6/7 DPT:9.001 TypeError: value.toFixed is not a function
100
- at Object.formatAPDU (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/dptlib/dpt9.ts:21:18)
101
- at Object.populateAPDU (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/dptlib/index.ts:168:19)
102
- at KNXClient.getKNXDataBuffer (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/KNXClient.ts:378:10)
103
- at KNXClient.write (/Users/massimosaccani/Documents/GitHub/KNXUltimate/src/KNXClient.ts:615:26)
104
- at knxUltimateConfigNode.node.sendKNXTelegramToKNXEngine (/Users/massimosaccani/Documents/GitHub/node-red-contrib-knx-ultimate/nodes/knxUltimate-config.js:1253:30)
105
- at knxUltimate._inputCallback (/Users/massimosaccani/Documents/GitHub/node-red-contrib-knx-ultimate/nodes/knxUltimate.js:566:30)
106
- at /usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:214:26
107
- at Object.trigger (/usr/local/lib/node_modules/node-red/node_modules/@node-red/util/lib/hooks.js:166:13)
108
- at knxUltimate.Node._emitInput (/usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:206:11)
109
- at knxUltimate.Node.emit (/usr/local/lib/node_modules/node-red/node_modules/@node-red/runtime/lib/nodes/Node.js:190:25)
110
- -> 10/8/2024, 8:20:42 AM [knxUltimate-config <KNX Gateway senza csv>] [info] buildInputMessage: received a wrong datagram form KNX BUS, from device 15.15.22 Destination 5/6/7 Event GroupValue_Write GA's Datapoint 1.001 Devicename Topic 5/6/7 NodeID 08b25df88e6668d3
111
- -> 10/8/2024, 8:20:59 AM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
112
- -> 10/8/2024, 8:20:59 AM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
113
- -> 10/8/2024, 8:20:59 AM [knxUltimate <b3e73a4f0615889e>] [info] Close: node id b3e73a4f0615889e with topic 5/6/7 has been removed from the server.
114
- -> 10/8/2024, 8:20:59 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
115
- -> 10/8/2024, 8:20:59 AM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.
116
- -> 10/8/2024, 8:21:06 AM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
117
- -> 10/8/2024, 8:21:06 AM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
118
- -> 10/8/2024, 8:21:06 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
119
- -> 10/8/2024, 8:21:06 AM [knxUltimate <08b25df88e6668d3>] NEW LOG SESSION --------------------------------------------
120
- -> 10/8/2024, 8:21:06 AM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
121
- -> 10/8/2024, 8:21:06 AM [knxUltimate <b3e73a4f0615889e>] NEW LOG SESSION --------------------------------------------
122
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
123
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
124
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
125
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
126
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
127
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
128
- -> 10/8/2024, 8:21:10 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
129
- -> 10/8/2024, 8:21:12 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 174
130
- -> 10/8/2024, 8:21:12 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
131
- -> 10/8/2024, 8:21:12 AM [knxUltimate-config <KNX Gateway senza csv>] [info] buildInputMessage: received a wrong datagram form KNX BUS, from device 15.15.22 Destination 5/6/7 Event GroupValue_Write GA's Datapoint 1.001 Devicename Topic 5/6/7 NodeID 08b25df88e6668d3
132
- -> 10/8/2024, 8:22:08 AM [knxUltimate <08b25df88e6668d3>] [info] Close: node id 08b25df88e6668d3 with topic 5/6/7 has been removed from the server.
133
- -> 10/8/2024, 8:26:06 AM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
134
- -> 10/8/2024, 8:26:06 AM [knxUltimate <b3e73a4f0615889e>] [info] Close: node id b3e73a4f0615889e with topic 5/6/7 has been removed from the server.
135
- -> 10/8/2024, 8:26:06 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
136
- -> 10/8/2024, 8:26:06 AM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.
137
- -> 10/8/2024, 8:28:41 AM [knxUltimate-config <KNX Gateway senza csv>] NEW LOG SESSION --------------------------------------------
138
- -> 10/8/2024, 8:28:41 AM [knxUltimate-config <KNX Gateway senza csv>] [info] payload cache set to /Users/massimosaccani/.node-red/knxultimatestorage/knxpersistvalues
139
- -> 10/8/2024, 8:28:41 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Autoconnection: yes Node KNX Gateway senza csv
140
- -> 10/8/2024, 8:28:41 AM [knxUltimate <Universal KNX>] NEW LOG SESSION --------------------------------------------
141
- -> 10/8/2024, 8:28:41 AM [knxUltimate <b3e73a4f0615889e>] NEW LOG SESSION --------------------------------------------
142
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Auto Reconect by timerKNXUltimateCheckState in progress. node.LinkStatus: disconnected, node.autoReconnect:true
143
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Bind KNX Bus to interface (Auto). Node KNX Gateway senza csv
144
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
145
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] perform websocket connection on KNX Gateway senza csv
146
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting... KNX Gateway senza csv
147
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connecting to224.0.23.12
148
- -> 10/8/2024, 8:28:45 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Connected to %o {"physAddr":"15.15.22","connectionKeepAliveTimeout":60,"ipAddr":"224.0.23.12","ipPort":3671,"hostProtocol":"Multicast","isSecureKNXEnabled":false,"suppress_ack_ldatareq":false,"loglevel":"info","localEchoInTunneling":true,"localIPAddress":"192.168.1.198","interface":"","jKNXSecureKeyring":null,"KNXQueueSendIntervalMilliseconds":25}
149
- -> 10/8/2024, 8:28:46 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Loaded saved GA values 175
150
- -> 10/8/2024, 8:28:46 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Do DoInitialReadFromKNXBusOrFile
151
- -> 10/8/2024, 8:28:50 AM [knxUltimate <Universal KNX>] [info] Close: node id 94644e7ae5ca6002 with topic has been removed from the server.
152
- -> 10/8/2024, 8:28:50 AM [knxUltimate <b3e73a4f0615889e>] [info] Close: node id b3e73a4f0615889e with topic 5/6/7 has been removed from the server.
153
- -> 10/8/2024, 8:28:50 AM [knxUltimate-config <KNX Gateway senza csv>] [info] Disconnect: already not connected:disconnected, node.autoReconnect:true
154
- -> 10/8/2024, 8:28:50 AM [knxUltimate-config <KNX Gateway senza csv>] [info] KNXClient socket closed.