iobroker.knx 2.0.4 → 2.0.8
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 +60 -0
- package/admin/asset-manifest.json +7 -7
- package/admin/index_m.html +1 -1
- package/admin/static/js/2.2f4b0365.chunk.js +3 -0
- package/admin/static/js/{2.8ce0c6f9.chunk.js.LICENSE.txt → 2.2f4b0365.chunk.js.LICENSE.txt} +0 -0
- package/admin/static/js/2.2f4b0365.chunk.js.map +1 -0
- package/admin/static/js/main.4774511e.chunk.js +2 -0
- package/admin/static/js/main.4774511e.chunk.js.map +1 -0
- package/io-package.json +54 -1
- package/knx.js +2 -2
- package/package.json +67 -1
- package/admin/static/js/2.8ce0c6f9.chunk.js +0 -3
- package/admin/static/js/2.8ce0c6f9.chunk.js.map +0 -1
- package/admin/static/js/main.1efda754.chunk.js +0 -2
- package/admin/static/js/main.1efda754.chunk.js.map +0 -1
package/README.md
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
* [How the import works](#how-the-import-works)
|
|
21
21
|
* [Avoidance of problems](#avoidance-of-problems)
|
|
22
22
|
* [GA-Tool](#ga-tool)
|
|
23
|
+
* [Direct Link non-KNX state to KNX vice-verse](#direct-link-non-knx-state-to-knx-vice-verse)
|
|
23
24
|
* [Planned features](#planned-features)
|
|
24
25
|
* [Changelog](#changelog)
|
|
25
26
|
|
|
@@ -46,6 +47,10 @@ Before beginning: Every DPT of com.Objects should be set in your ETS project. Ev
|
|
|
46
47
|
Without this requirements, the adapter is not installable or will work not properly.
|
|
47
48
|
|
|
48
49
|
## License requirements
|
|
50
|
+
|
|
51
|
+
For <500 datapoints there is no need of registration or adding a license key. If you have more then 500 datapoints you need a license. You can choose
|
|
52
|
+
between yearly and permanent licence.
|
|
53
|
+
|
|
49
54
|
To use this adapter in ioBroker you need to accept the source code license of the adapter. The source code of this adapter is available under the CC-NC-BY license.
|
|
50
55
|
|
|
51
56
|
Additionally you need a license to use the adapter. The license editions are available on [https://iobroker.net/www/pricing](https://iobroker.net/www/pricing)
|
|
@@ -57,9 +62,11 @@ Additionally you need a license to use the adapter. The license editions are ava
|
|
|
57
62
|
* generating ETS-like object structure
|
|
58
63
|
* finding and combining act-channel and state-channel (heuristic)
|
|
59
64
|
* updating all states on start
|
|
65
|
+
* no cloud or internet needed
|
|
60
66
|
* emitting a READ to the KNX-Bus, while writing on state-object
|
|
61
67
|
* edit and modify GA objects with GA-Tools
|
|
62
68
|
* edit and modify state-act relations with GA-Tools
|
|
69
|
+
* NEW: allow non-KNX State direct link (vice-verse)
|
|
63
70
|
|
|
64
71
|
##Adapter configuration
|
|
65
72
|
After installing this adapter, open the adapter configuration.
|
|
@@ -194,6 +201,32 @@ If there are more GA's to change properties, use multiselect. This feature works
|
|
|
194
201
|
2. properties to change
|
|
195
202
|
3. there is no change possible
|
|
196
203
|
|
|
204
|
+
### Direct Link non-KNX state to KNX vice-verse
|
|
205
|
+
Since Adapter Version 2.0.6 it is possible to link a non KNX ioBroker state directly to a GA. This
|
|
206
|
+
can be used to apply time, date, any states or infos to KNX. (a small hint: you can link any of your
|
|
207
|
+
IOT components directly to a GA in KNX (f.e. link a homematic button to a KNX GA or link a KNX buttonsensor to
|
|
208
|
+
your sonosplayer)). The states can be read with a GroupValueRead and if the states changes it will be
|
|
209
|
+
automaticly updated on KNX. Also if you change on KNX it will update the linked non KNX iot device.
|
|
210
|
+
|
|
211
|
+

|
|
212
|
+
|
|
213
|
+
1. select the GA to connect to
|
|
214
|
+
2. show the selected GA
|
|
215
|
+
3. this GA must have **write** attribute
|
|
216
|
+
4. choose a valid datapointtype (if they don't match, it will not work)
|
|
217
|
+
5. it is not allowed to have a act-state relation
|
|
218
|
+
6. button to select a non KNX object to link with
|
|
219
|
+
|
|
220
|
+

|
|
221
|
+
|
|
222
|
+
1. select the non-KNX object you want to link
|
|
223
|
+
2. hit ok, if you're done
|
|
224
|
+
|
|
225
|
+

|
|
226
|
+
|
|
227
|
+
Now is KNX-GA **(1)** directly linked with non-KNX iobroker **(2)**. With **(3)** you can delete this
|
|
228
|
+
relation.
|
|
229
|
+
|
|
197
230
|
## Planned features
|
|
198
231
|
|
|
199
232
|
* esf-import
|
|
@@ -205,6 +238,23 @@ If there are more GA's to change properties, use multiselect. This feature works
|
|
|
205
238
|
-->
|
|
206
239
|
|
|
207
240
|
## Changelog
|
|
241
|
+
### 2.0.8
|
|
242
|
+
* fixed bug with unackn write
|
|
243
|
+
* fixed bug in linkedState
|
|
244
|
+
|
|
245
|
+
### 2.0.7
|
|
246
|
+
* fixed bug with unable to write on KNX
|
|
247
|
+
|
|
248
|
+
### 2.0.6
|
|
249
|
+
* fixed problem on ETSv6 import
|
|
250
|
+
* many small bugfixes
|
|
251
|
+
* implemented GA-Tools directLink feature
|
|
252
|
+
|
|
253
|
+
### 2.0.5
|
|
254
|
+
|
|
255
|
+
* fixed problem on ETSv4 import
|
|
256
|
+
* corrected some messages
|
|
257
|
+
* corrected DPT14.x min and max range
|
|
208
258
|
|
|
209
259
|
### 2.0.4
|
|
210
260
|
|
|
@@ -475,6 +525,16 @@ If there are more GA's to change properties, use multiselect. This feature works
|
|
|
475
525
|
|
|
476
526
|
* (bluefox) initial release
|
|
477
527
|
|
|
528
|
+
## Exceptions and errors
|
|
529
|
+
|
|
530
|
+
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.**
|
|
531
|
+
For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)!
|
|
532
|
+
Sentry reporting is used starting with js-controller 3.0.
|
|
533
|
+
|
|
534
|
+
The developer is not able to get any further special informations about the system/config/user/enviroment. In case no license is found the
|
|
535
|
+
adapter version and host id is also reported.
|
|
536
|
+
|
|
537
|
+
|
|
478
538
|
## License
|
|
479
539
|
The CC-NC-BY License (CC-NC-BY)
|
|
480
540
|
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
3
|
"main.css": "./static/css/main.e2d673ee.chunk.css",
|
|
4
|
-
"main.js": "./static/js/main.
|
|
5
|
-
"main.js.map": "./static/js/main.
|
|
4
|
+
"main.js": "./static/js/main.4774511e.chunk.js",
|
|
5
|
+
"main.js.map": "./static/js/main.4774511e.chunk.js.map",
|
|
6
6
|
"runtime-main.js": "./static/js/runtime-main.ec74a465.js",
|
|
7
7
|
"runtime-main.js.map": "./static/js/runtime-main.ec74a465.js.map",
|
|
8
8
|
"static/css/2.67ef5efb.chunk.css": "./static/css/2.67ef5efb.chunk.css",
|
|
9
|
-
"static/js/2.
|
|
10
|
-
"static/js/2.
|
|
9
|
+
"static/js/2.2f4b0365.chunk.js": "./static/js/2.2f4b0365.chunk.js",
|
|
10
|
+
"static/js/2.2f4b0365.chunk.js.map": "./static/js/2.2f4b0365.chunk.js.map",
|
|
11
11
|
"index.html": "./index.html",
|
|
12
12
|
"static/css/2.67ef5efb.chunk.css.map": "./static/css/2.67ef5efb.chunk.css.map",
|
|
13
13
|
"static/css/main.e2d673ee.chunk.css.map": "./static/css/main.e2d673ee.chunk.css.map",
|
|
14
|
-
"static/js/2.
|
|
14
|
+
"static/js/2.2f4b0365.chunk.js.LICENSE.txt": "./static/js/2.2f4b0365.chunk.js.LICENSE.txt"
|
|
15
15
|
},
|
|
16
16
|
"entrypoints": [
|
|
17
17
|
"static/js/runtime-main.ec74a465.js",
|
|
18
18
|
"static/css/2.67ef5efb.chunk.css",
|
|
19
|
-
"static/js/2.
|
|
19
|
+
"static/js/2.2f4b0365.chunk.js",
|
|
20
20
|
"static/css/main.e2d673ee.chunk.css",
|
|
21
|
-
"static/js/main.
|
|
21
|
+
"static/js/main.4774511e.chunk.js"
|
|
22
22
|
]
|
|
23
23
|
}
|
package/admin/index_m.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" onerror="setTimeout(function(){window.location.reload()}, 5000)" src="../../lib/js/socket.io.js"></script><script type="text/javascript" src="./zip/zip.js"></script><script type="text/javascript" src="./zip/zip-ext.js"></script><script type="text/javascript" src="./zip/inflate.js"></script><title>KNX settings</title><link href="./static/css/2.67ef5efb.chunk.css" rel="stylesheet"><link href="./static/css/main.e2d673ee.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function r(r){for(var n,i,l=r[0],a=r[1],f=r[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n]);for(p&&p(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,l=1;l<t.length;l++){var a=t[l];0!==o[a]&&(n=!1)}n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={1:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,function(r){return e[r]}.bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="./";var l=this["webpackJsonpknx-admin"]=this["webpackJsonpknx-admin"]||[],a=l.push.bind(l);l.push=r,l=l.slice();for(var f=0;f<l.length;f++)r(l[f]);var p=a;t()}([])</script><script src="./static/js/2.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="./favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><meta name="theme-color" content="#000000"/><link rel="manifest" href="./manifest.json"/><script type="text/javascript" onerror="setTimeout(function(){window.location.reload()}, 5000)" src="../../lib/js/socket.io.js"></script><script type="text/javascript" src="./zip/zip.js"></script><script type="text/javascript" src="./zip/zip-ext.js"></script><script type="text/javascript" src="./zip/inflate.js"></script><title>KNX settings</title><link href="./static/css/2.67ef5efb.chunk.css" rel="stylesheet"><link href="./static/css/main.e2d673ee.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function r(r){for(var n,i,l=r[0],a=r[1],f=r[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(e[n]=a[n]);for(p&&p(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,l=1;l<t.length;l++){var a=t[l];0!==o[a]&&(n=!1)}n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={1:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,function(r){return e[r]}.bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="./";var l=this["webpackJsonpknx-admin"]=this["webpackJsonpknx-admin"]||[],a=l.push.bind(l);l.push=r,l=l.slice();for(var f=0;f<l.length;f++)r(l[f]);var p=a;t()}([])</script><script src="./static/js/2.2f4b0365.chunk.js"></script><script src="./static/js/main.4774511e.chunk.js"></script></body></html>
|