iobroker.knx 2.0.5 → 2.0.6
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 +37 -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.fabaad9b.chunk.js +2 -0
- package/admin/static/js/main.fabaad9b.chunk.js.map +1 -0
- package/io-package.json +13 -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.cda1091f.chunk.js +0 -2
- package/admin/static/js/main.cda1091f.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)
|
|
@@ -60,6 +65,7 @@ Additionally you need a license to use the adapter. The license editions are ava
|
|
|
60
65
|
* emitting a READ to the KNX-Bus, while writing on state-object
|
|
61
66
|
* edit and modify GA objects with GA-Tools
|
|
62
67
|
* edit and modify state-act relations with GA-Tools
|
|
68
|
+
* NEW: allow non-KNX State direct link (vice-verse)
|
|
63
69
|
|
|
64
70
|
##Adapter configuration
|
|
65
71
|
After installing this adapter, open the adapter configuration.
|
|
@@ -194,6 +200,32 @@ If there are more GA's to change properties, use multiselect. This feature works
|
|
|
194
200
|
2. properties to change
|
|
195
201
|
3. there is no change possible
|
|
196
202
|
|
|
203
|
+
### Direct Link non-KNX state to KNX vice-verse
|
|
204
|
+
Since Adapter Version 2.0.6 it is possible to link a non KNX ioBroker state directly to a GA. This
|
|
205
|
+
can be used to apply time, date, any states or infos to KNX. (a small hint: you can link any of your
|
|
206
|
+
IOT components directly to a GA in KNX (f.e. link a homematic button to a KNX GA or link a KNX buttonsensor to
|
|
207
|
+
your sonosplayer)). The states can be read with a GroupValueRead and if the states changes it will be
|
|
208
|
+
automaticly updated on KNX. Also if you change on KNX it will update the linked non KNX iot device.
|
|
209
|
+
|
|
210
|
+

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

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

|
|
225
|
+
|
|
226
|
+
Now is KNX-GA **(1)** directly linked with non-KNX iobroker **(2)**. With **(3)** you can delete this
|
|
227
|
+
relation.
|
|
228
|
+
|
|
197
229
|
## Planned features
|
|
198
230
|
|
|
199
231
|
* esf-import
|
|
@@ -206,6 +238,11 @@ If there are more GA's to change properties, use multiselect. This feature works
|
|
|
206
238
|
|
|
207
239
|
## Changelog
|
|
208
240
|
|
|
241
|
+
### 2.0.6
|
|
242
|
+
* fixed problem on ETSv6 import
|
|
243
|
+
* many small bugfixes
|
|
244
|
+
* implemented GA-Tools directLink feature
|
|
245
|
+
|
|
209
246
|
### 2.0.5
|
|
210
247
|
|
|
211
248
|
* fixed problem on ETSv4 import
|
|
@@ -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.fabaad9b.chunk.js",
|
|
5
|
+
"main.js.map": "./static/js/main.fabaad9b.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.fabaad9b.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.fabaad9b.chunk.js"></script></body></html>
|