iobroker.openknx 0.7.3 → 0.8.0
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/README.md +22 -12
- package/admin/index_m.html +508 -501
- package/io-package.json +22 -21
- package/lib/doubleKeyedMap.js +2 -2
- package/lib/knx/src/Connection.js +2 -1
- package/lib/knx/src/dptlib/index.js +1 -1
- package/lib/openknx.js +1 -0
- package/lib/projectImport.js +361 -361
- package/lib/tools.js +1 -1
- package/main.js +21 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,11 +96,11 @@ A GA without DPT basetype cannot be imported with this adapter. ETS4 projects mu
|
|
|
96
96
|
|
|
97
97
|
The style only defines the appearance of the Group Address in the ETS user interface. The following styles are available:
|
|
98
98
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
1 3-Level Main/Middle/Subgroup 1/3/5
|
|
102
|
-
2 2-Level Main Group/Subgroup 1/25
|
|
103
|
-
3 Free-Level Subgroup 300
|
|
99
|
+
| | Presentation Style | Name | Example |
|
|
100
|
+
| --- | ------------------ | -------------------- | ------- |
|
|
101
|
+
| 1 | 3-Level | Main/Middle/Subgroup | 1/3/5 |
|
|
102
|
+
| 2 | 2-Level | Main Group/Subgroup | 1/25 |
|
|
103
|
+
| 3 | Free-Level | Subgroup | 300 |
|
|
104
104
|
|
|
105
105
|
The adapter supports all 3 style configurations in the project import xml file. For storing in the IOB object, the format is always converted into the 3-level form.
|
|
106
106
|
Please note that the combined ga and group name must be unique for the IOB object tree. Having for example an ETS configuration with two middle groups of the same name will result in a joint hierarchy element and having two identically named gas in there will result into an error.
|
|
@@ -177,17 +177,19 @@ The whole name including path is used to check for similarity.
|
|
|
177
177
|
where entry_new points to the old adapter object path and entry_new the openknx adapter instance
|
|
178
178
|
- set influx enabled for new object entry_new
|
|
179
179
|
|
|
180
|
-
# howto use the adapter & basic
|
|
180
|
+
# howto use the adapter & basic concepts
|
|
181
|
+
|
|
182
|
+
# howto use the adapter & basic concepts
|
|
181
183
|
|
|
182
184
|
### ACK flags with tunneling connections
|
|
183
185
|
|
|
184
186
|
Applications shall not set the ack flag, application is notified from this adapter by the ack flag if data is updated.
|
|
185
|
-
|
|
187
|
+
OpenKNX sets the ack flag of the corresponding IoBroker object on receiption of a group address if another knx host writes to the bus.
|
|
186
188
|
|
|
187
|
-
| GA is | connected to device with
|
|
188
|
-
| ----------------------------------- |
|
|
189
|
-
| Application issues GroupValue_Write | ack
|
|
190
|
-
| Application issues GroupValue_Read | ack
|
|
189
|
+
| GA is | connected to device with an R flag | connected to devices with no R flag | unconnected |
|
|
190
|
+
| ----------------------------------- | ---------------------------------- | ----------------------------------- | ------------------------ |
|
|
191
|
+
| Application issues GroupValue_Write | OpenKNX generates ack | OpenKNX generates ack | OpenKNX generates no ack |
|
|
192
|
+
| Application issues GroupValue_Read | OpenKNX generates ack | OpenKNX generates no ack | OpenKNX generates no ack |
|
|
191
193
|
|
|
192
194
|
### Node Red complex datatype example
|
|
193
195
|
|
|
@@ -406,7 +408,14 @@ Openknx estimates the current bus load of the KNX line it is connected to in obj
|
|
|
406
408
|
* npm run release
|
|
407
409
|
* npm run release major/minor/patch major.minor.patch
|
|
408
410
|
* update gui: iob upload openknx
|
|
411
|
+
* update stable: https://github.com/ioBroker/ioBroker.repositories#add-a-new-adapter-to-the-stable-repository
|
|
409
412
|
-->
|
|
413
|
+
### 0.8.0 (2024-03-30)
|
|
414
|
+
|
|
415
|
+
- feature: put KNX interface name into log
|
|
416
|
+
- bugfix: #419 wait for connection complete before data processing in case of receiving data before
|
|
417
|
+
- bugfix: #457 Ack missing after changing IOB object value
|
|
418
|
+
|
|
410
419
|
### 0.7.3 (2024-03-05)
|
|
411
420
|
|
|
412
421
|
- feature: one of the warnings is configurable in the dialog
|
|
@@ -419,7 +428,8 @@ Openknx estimates the current bus load of the KNX line it is connected to in obj
|
|
|
419
428
|
|
|
420
429
|
### 0.7.1 (2024-01-07)
|
|
421
430
|
|
|
422
|
-
- feature: when requesting fast message sendout create iob acks per bus message status, before it triggered all acks on first message send confirmance
|
|
431
|
+
- feature: when requesting fast message sendout create iob acks per bus message status, situation before: it triggered all acks on first message send confirmance
|
|
432
|
+
- feature: when requesting fast message sendout create iob acks per bus message status, situation before: it triggered all acks on first message send confirmance
|
|
423
433
|
- feature: add message count object
|
|
424
434
|
- feature: use common.desc from ets xml Description field and move datatype info to native
|
|
425
435
|
- cleanup: stop timers on shutdown
|