node-red-contrib-knx-ultimate 3.3.20 → 3.3.21

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,9 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 3.3.20** - March 2025<br/>
10
+ - KNX Engine: fixed an unmeaningful error while validating DPTs.<br/>
11
+
9
12
  **Version 3.3.20** - March 2025<br/>
10
13
  - Load control node: fixed a malfunction in the flow's msg.shedding procedure.<br/>
11
14
 
package/README.md CHANGED
@@ -240,8 +240,6 @@ List of commercial companies, which have given us permission to be mentioned on
240
240
  <table>
241
241
  <tr>
242
242
  <td style="valign:center; border: 0px; padding: 15px;">
243
-
244
-
245
243
  </td>
246
244
 
247
245
  <td style="valign:center; border: 0px; padding: 15px;">
@@ -276,6 +274,11 @@ List of commercial companies, which have given us permission to be mentioned on
276
274
  [![](https://raw.githubusercontent.com/Supergiovane/node-red-contrib-knx-ultimate/master/img/c/innovationsystem.png)](https://www.onsystem-iot.com/)
277
275
  </td>
278
276
 
277
+ <td style="valign:center; border: 0px; padding: 15px;">
278
+
279
+ [![](https://raw.githubusercontent.com/Supergiovane/node-red-contrib-knx-ultimate/master/img/c/inventife.png)](https://inventife.com)
280
+ </td>
281
+
279
282
  </tr>
280
283
  </table>
281
284
 
@@ -289,7 +292,7 @@ List of commercial companies, which have given us permission to be mentioned on
289
292
  * [Altis - Energy and utilities provider](https://altis.swiss)
290
293
  * [Can'nX France - KNX Device Manufacturer and integrator](https://can-nx.com)
291
294
  * [Innovation System - System integrators](https://www.onsystem-iot.com)
292
-
295
+ * [Inventife - Smart building and accident detection](https://www.inventife.com)
293
296
  <br/>
294
297
 
295
298
  ## FRIENDLY COMMUNITIES AROUND THE WORLD
Binary file
@@ -134,7 +134,7 @@ You can send an Email to the KNX installer responsible to your Building, or you
134
134
  | Property | Description |
135
135
  | ----------------------------- | --------------------------------------------------------------------------------------------------- |
136
136
  | Gateway | Selected KNX gateway. |
137
- | Group Address to monitor | The node will send a telegram to this address and monitors the message flowing through the KNX BUS. The Datapoint must be DPT 1.x (boolean). |
137
+ | Group Address to monitor | The node will send a telegram to this address and monitors the message flowing through the KNX BUS. The Datapoint must be DPT 1.x (boolean).|
138
138
  | Name | Node Name |
139
139
  | Auto start the watchdog timer | The watchdog timer starts automatically on deploy or on node-red start. |
140
140
  | Check level | See below |
@@ -286,11 +286,8 @@ The Config-Node will change the settings and reconnect with new parameters.<br /
286
286
 
287
287
  Be careful, if you restart node-red, the new settings are reverted to the settings specified in the Config-Node.<br />
288
288
 
289
- ALL parameters are OPTIONAL <br />
289
+ **ALL parameters are OPTIONAL** <br />
290
290
 
291
- Please <a href="https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---WatchDog"
292
-
293
- target="_blank">see here for other examples.</a>.
294
291
 
295
292
  ```javascript
296
293
 
@@ -307,7 +304,8 @@ msg.setGatewayConfig={IP:"224.0.23.12",Port:3671,PhysicalAddress:"15.15.1",BindT
307
304
  Protocol:"Multicast", importCSV:`"Group name" "Address" "Central" "Unfiltered" "Description" "DatapointType" "Security"
308
305
  "Attuatori luci" "0/-/-" "" "" "" "" "Auto"
309
306
  "Luci primo piano" "0/0/-" "" "" "" "" "Auto"
310
- "Luce camera da letto" "0/0/1" "" "" "" "DPST-1-1" "Auto"};`
307
+ "Luce camera da letto" "0/0/1" "" "" "" "DPST-1-1" "Auto"};`}
308
+
311
309
  return msg;
312
310
 
313
311
  ```
@@ -345,4 +343,5 @@ return msg;
345
343
  ## SEE ALSO
346
344
 
347
345
  [Sample WatchDog](https://github.com/Supergiovane/node-red-contrib-knx-ultimate/wiki/-Sample---WatchDog)
348
- </script>
346
+
347
+
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "3.3.20",
6
+ "version": "3.3.21",
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",
@@ -11,7 +11,7 @@
11
11
  "dns-sync": "0.2.1",
12
12
  "eventsource": "2.0.2",
13
13
  "js-yaml": "4.1.0",
14
- "knxultimate": "4.1.0-beta.9",
14
+ "knxultimate": "4.1.0-beta.10",
15
15
  "lodash": "4.17.21",
16
16
  "node-color-log": "12.0.1",
17
17
  "mkdirp": "3.0.1",