iobroker.openknx 0.2.2 → 0.2.3
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 +1 -1
- package/io-package.json +2 -2
- package/main.js +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -306,7 +306,7 @@ Data is sent to Iobroker Sentry server hosted in Germany. If you have allowed io
|
|
|
306
306
|
- only IPv4 supported
|
|
307
307
|
|
|
308
308
|
## Changelog
|
|
309
|
-
### 0.2.
|
|
309
|
+
### 0.2.3 (2022-05-26)
|
|
310
310
|
* feature: writing to bus l_data.con creates a ack on the iobroker object if successful (the knx conf flag unset)
|
|
311
311
|
* bugfix: remove manual Physical KNX address dialog, use 0.0.0 instead
|
|
312
312
|
* bugfix: remove error log when answering to GroupValueRead: #183
|
package/io-package.json
CHANGED
package/main.js
CHANGED
|
@@ -487,10 +487,9 @@ class openknx extends utils.Adapter {
|
|
|
487
487
|
let convertedVal = [];
|
|
488
488
|
let ret = "unknown";
|
|
489
489
|
|
|
490
|
-
this.log.silly(`event ${evt} src: ${src} dst: ${dest}`);
|
|
491
|
-
|
|
492
490
|
if (src == this.config.eibadr) {
|
|
493
491
|
//L_data.ind of own L_data.req
|
|
492
|
+
this.log.info(`receive self ga: ${src}`);//rem
|
|
494
493
|
return "receive self ga";
|
|
495
494
|
}
|
|
496
495
|
|