iobroker.zigbee 3.1.4 → 3.1.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 +9 -0
- package/admin/admin.js +879 -680
- package/admin/img/philips_hue_lom001.png +0 -0
- package/admin/index_m.html +40 -150
- package/admin/tab_m.html +137 -238
- package/docs/tutorial/groups-1.png +0 -0
- package/docs/tutorial/groups-2.png +0 -0
- package/docs/tutorial/tab-dev-1.png +0 -0
- package/io-package.json +28 -28
- package/lib/DeviceDebug.js +0 -1
- package/lib/commands.js +117 -64
- package/lib/developer.js +0 -0
- package/lib/exposes.js +3 -2
- package/lib/localConfig.js +8 -0
- package/lib/ota.js +0 -0
- package/lib/statescontroller.js +1 -1
- package/lib/zbDeviceConfigure.js +0 -0
- package/lib/zbDeviceEvent.js +0 -1
- package/lib/zigbeecontroller.js +15 -7
- package/main.js +14 -21
- package/package.json +4 -4
|
File without changes
|
package/admin/index_m.html
CHANGED
|
@@ -326,6 +326,19 @@
|
|
|
326
326
|
#map {
|
|
327
327
|
margin: 0px;
|
|
328
328
|
}
|
|
329
|
+
.dev_list {
|
|
330
|
+
display: block;
|
|
331
|
+
margin-left: auto;
|
|
332
|
+
margin-right: auto;
|
|
333
|
+
width: 80px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
#dataroweven { background-color: #909090; color: #c0c0c0 !important; }
|
|
337
|
+
#datarowodd { background-color: #c0c0c0; color: #202020 !important; }
|
|
338
|
+
#datarowopt { background-color: #707070; color: #c0c0c0 !important; }
|
|
339
|
+
#datatable { background-color: #3090c0; color: #202020 !important; }
|
|
340
|
+
#datared { color: #C00000 !important;}
|
|
341
|
+
#datalime { background-color: #cddc31; color: #c00000 !important;}
|
|
329
342
|
|
|
330
343
|
#tab-main .main-toolbar-table .filter-input {
|
|
331
344
|
display: inline-table;
|
|
@@ -633,6 +646,7 @@
|
|
|
633
646
|
|
|
634
647
|
}
|
|
635
648
|
|
|
649
|
+
|
|
636
650
|
.move-label-up {
|
|
637
651
|
position: absolute !important;
|
|
638
652
|
top: -60px !important;
|
|
@@ -670,55 +684,32 @@
|
|
|
670
684
|
</p>
|
|
671
685
|
</div>
|
|
672
686
|
<ul id="nav-mobile" class="right">
|
|
687
|
+
<li>
|
|
688
|
+
<a id="adapterStopped_btn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="Adapter not running">
|
|
689
|
+
<i class="material-icons large">grid_off</i></a>
|
|
690
|
+
</li>
|
|
691
|
+
<li>
|
|
673
692
|
<li>
|
|
674
693
|
<a id="ErrorNotificationBtn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="Zigbee not running">
|
|
675
694
|
<i id="ErrorNotificationIcon" class="material-icons large">error</i></a>
|
|
676
695
|
</li>
|
|
677
|
-
|
|
678
|
-
<li>
|
|
696
|
+
<li>
|
|
679
697
|
<a id="state_cleanup_btn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="State Cleanup">
|
|
680
698
|
<i class="material-icons large icon-blue">delete_sweep</i></a>
|
|
681
|
-
|
|
682
|
-
-->
|
|
699
|
+
</li>
|
|
683
700
|
<li>
|
|
684
|
-
<a id="show_errors_btn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="Show Errors">
|
|
701
|
+
<a id="show_errors_btn" class="btn-floating disabled waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="Show Errors">
|
|
685
702
|
<i class="material-icons large icon-blue">feedback</i></a>
|
|
686
703
|
</li>
|
|
687
704
|
<li>
|
|
688
705
|
<a id="download_icons_btn"
|
|
689
|
-
class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
|
|
706
|
+
class="btn-floating disabled waves-effect waves-light blue tooltipped center-align hoverable translateT"
|
|
690
707
|
title="Download missing icons">
|
|
691
708
|
<i class="material-icons large">cloud_download</i></a>
|
|
692
709
|
</li>
|
|
693
|
-
<!--
|
|
694
|
-
<li>
|
|
695
|
-
<a id="fw_check_btn"
|
|
696
|
-
class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
|
|
697
|
-
title="Check firmware updates">
|
|
698
|
-
<i class="material-icons large icon-blue">system_update</i></a>
|
|
699
|
-
</li>
|
|
700
|
-
<li>
|
|
701
|
-
<a id="add_grp_btn"
|
|
702
|
-
class="btn-floating waves-effect waves-light brown tooltipped center-align hoverable translateT"
|
|
703
|
-
title="Add Group">
|
|
704
|
-
<i class="material-icons large">group_work</i></a>
|
|
705
|
-
</li>
|
|
706
|
-
<li>
|
|
707
|
-
<a id="touchlink_btn"
|
|
708
|
-
class="btn-floating waves-effect waves-light green tooltipped center-align hoverable translateT"
|
|
709
|
-
title="Touchlink reset and pairing">
|
|
710
|
-
<i class="material-icons large">wifi_tethering</i></a>
|
|
711
|
-
</li>
|
|
712
|
-
<li>
|
|
713
|
-
<a id="code_pairing"
|
|
714
|
-
class="btn-floating waves-effect waves-light green tooltipped center-align hoverable translateT"
|
|
715
|
-
title="Pairing with QR Code">
|
|
716
|
-
<i class="material-icons large">select_all</i></a>
|
|
717
|
-
</li>
|
|
718
|
-
-->
|
|
719
710
|
<li>
|
|
720
711
|
<a id="pairing"
|
|
721
|
-
class="btn-floating waves-effect waves-light green tooltipped center-align hoverable translateT"
|
|
712
|
+
class="btn-floating disabled waves-effect waves-light green tooltipped center-align hoverable translateT"
|
|
722
713
|
title="Let's pairing!">
|
|
723
714
|
<i class="material-icons large">leak_add</i></a>
|
|
724
715
|
</li>
|
|
@@ -731,6 +722,7 @@
|
|
|
731
722
|
<!--<li class="tab col s2"><a href="#tab-map" id="tabmap" class="translate tooltipped">Network map</a></li> -->
|
|
732
723
|
<!--<li class="tab col s1"><a href="#tab-binding" class="translate tooltipped">Binding</a></li> -->
|
|
733
724
|
<li class="tab col s2"><a href="#tab-exclude" class="translate tooltipped">Local Overrides</a></li>
|
|
725
|
+
<li class="tab col s2"><a href="#tab-overrides" class="translate tooltipped">Local Data</a></li>
|
|
734
726
|
<!--<li class="tab col s2"><a href="#tab-main" id="devs" class="translate tooltipped">Devices</a></li>-->
|
|
735
727
|
<li class="tab col s2"><a href="#tab-dev" id="develop" class="translate tooltipped">Developer</a>
|
|
736
728
|
<!--<li class="tab col s2"><a href="#tab-debug" id="tabdebug" class="translate">Debug</a></li>-->
|
|
@@ -1208,6 +1200,16 @@
|
|
|
1208
1200
|
<ul id="dbg_data_list">
|
|
1209
1201
|
</ul>
|
|
1210
1202
|
</div>
|
|
1203
|
+
<div id="tab-overrides" class="col s12 page">
|
|
1204
|
+
<div class="fixed-action-btn" style="margin-bottom: 100px">
|
|
1205
|
+
<a id="updateData"
|
|
1206
|
+
class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
|
|
1207
|
+
title="update Data"><i class="material-icons large">replay</i></a>
|
|
1208
|
+
</div>
|
|
1209
|
+
<div id="tab-overrides" row>
|
|
1210
|
+
Nothing to see yet.
|
|
1211
|
+
</div>
|
|
1212
|
+
</div>
|
|
1211
1213
|
</div>
|
|
1212
1214
|
</div>
|
|
1213
1215
|
|
|
@@ -1216,130 +1218,16 @@
|
|
|
1216
1218
|
<div class="modal-content">
|
|
1217
1219
|
<h3 class="translate">Rename / Group device</h3>
|
|
1218
1220
|
<div class="row">
|
|
1219
|
-
<div class="
|
|
1221
|
+
<div class="col s12 m12 l12">
|
|
1220
1222
|
<div class="input-field">
|
|
1221
1223
|
<input id="d_name" type="text" class="value validate">
|
|
1222
1224
|
<label for="d_name" class="translate">Name</label>
|
|
1223
1225
|
</div>
|
|
1224
1226
|
</div>
|
|
1225
1227
|
</div>
|
|
1226
|
-
<div class="
|
|
1227
|
-
<div class="row">
|
|
1228
|
-
<h6>Groups</h6>
|
|
1228
|
+
<div class="row endpoints_for_groups">
|
|
1229
1229
|
</div>
|
|
1230
|
-
|
|
1231
|
-
<div class="col">
|
|
1232
|
-
<div class=endpointid>
|
|
1233
|
-
<p class="translate device_with_endpoint">Main Endpoint</p>
|
|
1234
|
-
</div>
|
|
1235
|
-
</div>
|
|
1236
|
-
<div class="col1">
|
|
1237
|
-
<div class="input-field groups">
|
|
1238
|
-
<select id="d_groups_ep0" class="materialSelect" multiple>
|
|
1239
|
-
<option value="1">select</option>
|
|
1240
|
-
</select>
|
|
1241
|
-
<label for="d_groups_ep0" class="translate">Groups</label>
|
|
1242
|
-
</div>
|
|
1243
|
-
</div>
|
|
1244
|
-
</div>
|
|
1245
|
-
<div class="row epid1">
|
|
1246
|
-
<div class="col epid">
|
|
1247
|
-
<div class=endpointid>
|
|
1248
|
-
<p class="translate device_with_endpoint">Sub Endpoint 1</p>
|
|
1249
|
-
</div>
|
|
1250
|
-
</div>
|
|
1251
|
-
<div class="col">
|
|
1252
|
-
<div class="input-field groups">
|
|
1253
|
-
<select id="d_groups_ep1" class="materialSelect" multiple>
|
|
1254
|
-
<option value="1">select</option>
|
|
1255
|
-
</select>
|
|
1256
|
-
<label for="d_groups_ep1" class="translate">Groups</label>
|
|
1257
|
-
</div>
|
|
1258
|
-
</div>
|
|
1259
|
-
</div>
|
|
1260
|
-
<div class="row epid2">
|
|
1261
|
-
<div class="col epid">
|
|
1262
|
-
<div class=endpointid>
|
|
1263
|
-
<p class="translate device_with_endpoint">Sub Endpoint 2</p>
|
|
1264
|
-
</div>
|
|
1265
|
-
</div>
|
|
1266
|
-
<div class="col">
|
|
1267
|
-
<div class="input-field groups">
|
|
1268
|
-
<select id="d_groups_ep2" class="materialSelect" multiple>
|
|
1269
|
-
<option value="1">select</option>
|
|
1270
|
-
</select>
|
|
1271
|
-
<label for="d_groups_ep2" class="translate">Groups</label>
|
|
1272
|
-
</div>
|
|
1273
|
-
</div>
|
|
1274
|
-
</div>
|
|
1275
|
-
<div class="row epid3">
|
|
1276
|
-
<div class="col epid">
|
|
1277
|
-
<div class=endpointid>
|
|
1278
|
-
<p class="translate device_with_endpoint">Sub Endpoint 3</p>
|
|
1279
|
-
</div>
|
|
1280
|
-
</div>
|
|
1281
|
-
<div class="col">
|
|
1282
|
-
<div class="input-field groups">
|
|
1283
|
-
<select id="d_groups_ep3" class="materialSelect" multiple>
|
|
1284
|
-
<option value="1">select</option>
|
|
1285
|
-
</select>
|
|
1286
|
-
<label for="d_groups_ep3" class="translate">Groups</label>
|
|
1287
|
-
</div>
|
|
1288
|
-
</div>
|
|
1289
|
-
</div>
|
|
1290
|
-
<div class="row epid4">
|
|
1291
|
-
<div class="col epid">
|
|
1292
|
-
<div class=endpointid>
|
|
1293
|
-
<p class="translate device_with_endpoint">Sub Endpoint 4</p>
|
|
1294
|
-
</div>
|
|
1295
|
-
</div>
|
|
1296
|
-
<div class="col">
|
|
1297
|
-
<div class="input-field groups">
|
|
1298
|
-
<select id="d_groups_ep4" class="materialSelect" multiple>
|
|
1299
|
-
<option value="1">select</option>
|
|
1300
|
-
</select>
|
|
1301
|
-
<label for="d_groups_ep4" class="translate">Groups</label>
|
|
1302
|
-
</div>
|
|
1303
|
-
</div>
|
|
1304
|
-
</div>
|
|
1305
|
-
<div class="row epid5">
|
|
1306
|
-
<div class="col epid">
|
|
1307
|
-
<div class=endpointid>
|
|
1308
|
-
<p class="translate device_with_endpoint">Sub Endpoint 5</p>
|
|
1309
|
-
</div>
|
|
1310
|
-
</div>
|
|
1311
|
-
<div class="col">
|
|
1312
|
-
<div class="input-field groups">
|
|
1313
|
-
<select id="d_groups_ep5" class="materialSelect" multiple>
|
|
1314
|
-
<option value="1">select</option>
|
|
1315
|
-
</select>
|
|
1316
|
-
<label for="d_groups_ep5" class="translate">Groups</label>
|
|
1317
|
-
</div>
|
|
1318
|
-
</div>
|
|
1319
|
-
</div>
|
|
1320
|
-
<div class="row epid6">
|
|
1321
|
-
<div class="col epid">
|
|
1322
|
-
<div class=endpointid>
|
|
1323
|
-
<p class="translate device_with_endpoint">Sub Endpoint 6</p>
|
|
1324
|
-
</div>
|
|
1325
|
-
</div>
|
|
1326
|
-
<div class="col">
|
|
1327
|
-
<div class="input-field groups">
|
|
1328
|
-
<select id="d_groups_ep6" class="materialSelect" multiple>
|
|
1329
|
-
<option value="1">select</option>
|
|
1330
|
-
</select>
|
|
1331
|
-
<label for="d_groups_ep6" class="translate">Groups</label>
|
|
1332
|
-
</div>
|
|
1333
|
-
</div>
|
|
1334
|
-
</div>
|
|
1335
|
-
</div>
|
|
1336
|
-
<div class="options_available">
|
|
1337
|
-
<div class="row">
|
|
1338
|
-
<h6>Options</h6>
|
|
1339
|
-
</div>
|
|
1340
|
-
<div class="row options">
|
|
1341
|
-
|
|
1342
|
-
</div>
|
|
1230
|
+
<div class="row options">
|
|
1343
1231
|
</div>
|
|
1344
1232
|
</div>
|
|
1345
1233
|
<div class="modal-footer">
|
|
@@ -1504,6 +1392,8 @@
|
|
|
1504
1392
|
</div>
|
|
1505
1393
|
<div class="modal-footer">
|
|
1506
1394
|
<a name="IEEE" href="#!" class="modal-action waves-effect waves-red btn-flat left">Network</a>
|
|
1395
|
+
<a name="endpairing" id="endpairing" href="#!" class="modal-action waves-effect waves-red btn red translate">Stop</a>
|
|
1396
|
+
<a name="extendpairing" id="endpairing" href="#!" class="modal-action waves-effect waves-green btn green translate">Extend</a>
|
|
1507
1397
|
<a name="hide" href="#!" class="modal-action modal-close waves-effect waves-green btn green translate">Hide</a>
|
|
1508
1398
|
</div>
|
|
1509
1399
|
</div>
|