iobroker.zigbee 1.10.3 → 1.10.12
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 +271 -17
- package/admin/adapter-settings.js +105 -18
- package/admin/admin.js +76 -44
- package/admin/i18n/de/translations.json +1 -1
- package/admin/i18n/en/translations.json +1 -1
- package/admin/i18n/fr/translations.json +1 -1
- package/admin/i18n/nl/translations.json +1 -1
- package/admin/i18n/pl/translations.json +1 -1
- package/admin/i18n/pt/translations.json +1 -1
- package/admin/img/E2204.png +0 -0
- package/admin/img/group_1.png +0 -0
- package/admin/img/group_2.png +0 -0
- package/admin/img/group_3.png +0 -0
- package/admin/img/group_4.png +0 -0
- package/admin/img/group_5.png +0 -0
- package/admin/img/group_6.png +0 -0
- package/admin/img/group_7.png +0 -0
- package/admin/index_m.html +286 -32
- package/admin/tab_m.html +312 -7
- package/admin/vis-network.min.css +1 -1
- package/admin/words.js +2 -2
- package/docs/de/readme.md +15 -16
- package/docs/en/readme.md +19 -19
- package/io-package.json +104 -99
- package/lib/backup.js +1 -2
- package/lib/commands.js +6 -5
- package/lib/developer.js +6 -2
- package/lib/devices.js +6 -2
- package/lib/groups.js +1 -25
- package/lib/ota.js +2 -2
- package/lib/statescontroller.js +48 -39
- package/lib/utils.js +4 -1
- package/lib/zigbeecontroller.js +31 -26
- package/main.js +57 -8
- package/package.json +17 -16
- package/support/docgen.js +3 -1
package/admin/index_m.html
CHANGED
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
.m .zlogo {
|
|
45
45
|
padding: 0.5rem;
|
|
46
46
|
width: 64px;
|
|
47
|
+
margin-right: 10px;
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
.input-group {
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
#tabs {
|
|
83
|
-
margin-top:
|
|
84
|
+
margin-top: 40px;
|
|
84
85
|
}
|
|
85
86
|
|
|
86
87
|
#main {
|
|
@@ -439,6 +440,201 @@
|
|
|
439
440
|
.m.react-dark .switch label .lever:after {
|
|
440
441
|
background-color: #436a93;
|
|
441
442
|
}
|
|
443
|
+
|
|
444
|
+
.m .tabs .tab a.active {
|
|
445
|
+
color: #fff !important;
|
|
446
|
+
border-bottom: 2px solid #fff !important;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.m .navbar-fixed nav {
|
|
450
|
+
position: fixed;
|
|
451
|
+
z-index: 200;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
#tabs {
|
|
455
|
+
margin-top: 0;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.m .page {
|
|
459
|
+
margin-top: 7.0rem;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
#sett {
|
|
463
|
+
margin-top: 40px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.m .row .col.offset-s11 {
|
|
467
|
+
margin-left: 15px;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
#tab-main .navbar-fixed #nav-mobile {
|
|
471
|
+
position: fixed;
|
|
472
|
+
z-index: 100;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.m .navbar-fixed {
|
|
476
|
+
z-index: unset;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/* Style for medium Screens */
|
|
480
|
+
@media screen and (max-width: 900px) {
|
|
481
|
+
.m nav ul a.btn-floating {
|
|
482
|
+
margin-left: 5px;
|
|
483
|
+
margin-right: 5px;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
/* Style for small Screens */
|
|
488
|
+
@media screen and (max-width: 768px) {
|
|
489
|
+
#viewconfig {
|
|
490
|
+
margin-top: 0;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.m nav ul a.btn-floating {
|
|
494
|
+
margin-left: 5px;
|
|
495
|
+
margin-right: 5px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.m .navbar-fixed {
|
|
499
|
+
position: relative;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
#tab-main {
|
|
503
|
+
margin-top: 7rem;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
#devices {
|
|
507
|
+
margin-top: 1rem;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
#tab-main .navbar-fixed #nav-mobile {
|
|
511
|
+
display: flex;
|
|
512
|
+
flex-wrap: wrap;
|
|
513
|
+
position: fixed;
|
|
514
|
+
margin-bottom: 4rem;
|
|
515
|
+
z-index: 100;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(1) {
|
|
519
|
+
flex: 0 0 10%;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(2) {
|
|
523
|
+
flex: 0 0 35%;
|
|
524
|
+
height: 30px;
|
|
525
|
+
}
|
|
526
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(3),
|
|
527
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(4) {
|
|
528
|
+
height: 36px;
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
/* Style for very small Screens */
|
|
533
|
+
@media screen and (max-width: 600px) {
|
|
534
|
+
.m .navbar-fixed nav {
|
|
535
|
+
position: relative;
|
|
536
|
+
z-index: unset;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.m nav ul a.btn-floating {
|
|
540
|
+
margin-left: 8px;
|
|
541
|
+
margin-right: 8px;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
#nav-mobile {
|
|
545
|
+
background-color: #39c;
|
|
546
|
+
padding-bottom: 2px;
|
|
547
|
+
padding-top: 2px;
|
|
548
|
+
margin-top: -8px;
|
|
549
|
+
width: calc(100%);
|
|
550
|
+
}
|
|
551
|
+
.m .navbar-fixed {
|
|
552
|
+
position: relative;
|
|
553
|
+
}
|
|
554
|
+
.m .dropdown-menu {
|
|
555
|
+
position: fixed;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
#viewconfig {
|
|
559
|
+
margin-top: 0;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.m .modal {
|
|
563
|
+
width: 98%;
|
|
564
|
+
}
|
|
565
|
+
.m .modal .modal-content {
|
|
566
|
+
padding: 24px;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
#tab-dev {
|
|
570
|
+
overflow-x: hidden;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.m .row .col.offset-s11 {
|
|
574
|
+
margin-left: 13px;
|
|
575
|
+
margin-bottom: 10px;
|
|
576
|
+
width: calc(100% - 26px);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.device {
|
|
580
|
+
padding: 8px;
|
|
581
|
+
width: calc(100%);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
#devices {
|
|
585
|
+
margin-top: 3rem;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
#tab-main .navbar-fixed #nav-mobile {
|
|
589
|
+
display: flex;
|
|
590
|
+
flex-wrap: wrap;
|
|
591
|
+
position: fixed;
|
|
592
|
+
margin-bottom: 4rem;
|
|
593
|
+
z-index: 100;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(1) {
|
|
597
|
+
flex: 0 0 20%;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(2) {
|
|
601
|
+
flex: 0 0 70%;
|
|
602
|
+
}
|
|
603
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(3),
|
|
604
|
+
#tab-main .navbar-fixed #nav-mobile li:nth-child(4) {
|
|
605
|
+
height: 36px;
|
|
606
|
+
margin-top: 6px;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
#dev_result_log {
|
|
610
|
+
overflow: auto;
|
|
611
|
+
height: 20em;
|
|
612
|
+
padding: 0.5em;
|
|
613
|
+
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.move-label-up {
|
|
617
|
+
position: absolute !important;
|
|
618
|
+
top: -60px !important;
|
|
619
|
+
left: 0 !important;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
#tabs {
|
|
623
|
+
margin-top: 0;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
#tab-main {
|
|
627
|
+
margin-top: .5rem;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.m .navbar-fixed {
|
|
631
|
+
z-index: unset;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.m .page {
|
|
635
|
+
margin-top: 0rem;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
442
638
|
</style>
|
|
443
639
|
</head>
|
|
444
640
|
<body>
|
|
@@ -447,11 +643,11 @@
|
|
|
447
643
|
<div class="row navbar-fixed">
|
|
448
644
|
<nav class="nav-extended">
|
|
449
645
|
<div class="nav-wrapper">
|
|
450
|
-
<div class="col">
|
|
646
|
+
<div class="col s12 m6 l6">
|
|
451
647
|
<img src="zigbee.png" class="zlogo left" height="64px"/>
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
648
|
+
<p>
|
|
649
|
+
<h5 class="translate">Zigbee adapter</h5>
|
|
650
|
+
</p>
|
|
455
651
|
</div>
|
|
456
652
|
<ul id="nav-mobile" class="right">
|
|
457
653
|
<li>
|
|
@@ -497,11 +693,11 @@
|
|
|
497
693
|
<li class="tab col s2"><a href="#tab-main" id="devs" class="translate tooltipped">Devices</a></li>
|
|
498
694
|
<li class="tab col s2"><a href="#tab-map" id="tabmap" class="translate tooltipped">Network map</a>
|
|
499
695
|
</li>
|
|
500
|
-
<li class="tab col
|
|
501
|
-
<li class="tab col
|
|
696
|
+
<li class="tab col s1"><a href="#tab-binding" class="translate tooltipped">Binding</a></li>
|
|
697
|
+
<li class="tab col s2"><a href="#tab-exclude" class="translate tooltipped">Excludes</a></li>
|
|
502
698
|
<li class="tab col s2"><a href="#tab-sett" id="settings" class="translate tooltipped">Settings</a>
|
|
503
699
|
</li>
|
|
504
|
-
<li class="tab col
|
|
700
|
+
<li class="tab col s2"><a href="#tab-dev" id="develop" class="translate tooltipped">Developer</a>
|
|
505
701
|
</li>
|
|
506
702
|
</ul>
|
|
507
703
|
</div>
|
|
@@ -510,7 +706,7 @@
|
|
|
510
706
|
<div id="tabs" class="tabs-content row">
|
|
511
707
|
<div id="tab-main" class="col s12 page active">
|
|
512
708
|
<div class="navbar-fixed" style="height: 36px;">
|
|
513
|
-
<nav style="height: 36px; margin-left: -12px; line-height: 24px;">
|
|
709
|
+
<nav style="height: 36px; margin-left: -12px; line-height: 24px; width: calc(100% + 24px);">
|
|
514
710
|
<ul id="nav-mobile" class="left">
|
|
515
711
|
<li>
|
|
516
712
|
<a id="rotate_btn"
|
|
@@ -595,10 +791,17 @@
|
|
|
595
791
|
<option value="zstack">TI Z-Stack/CCxxxx</option>
|
|
596
792
|
<option value="deconz">Deconz/Conbee</option>
|
|
597
793
|
<option value="zigate">NXP/Zigate</option>
|
|
598
|
-
<option value="ezsp">
|
|
794
|
+
<option value="ezsp">SL EFR32 (EZSP) FW 7.2.x.x</option>
|
|
795
|
+
<option value="ember">SL EFR32 (EMBER) FW 7.4.x.x</option>
|
|
599
796
|
</select>
|
|
600
797
|
<label class="translate">Type</label>
|
|
601
798
|
</div>
|
|
799
|
+
|
|
800
|
+
<div class="input-field col s6 m3 l2">
|
|
801
|
+
<input id="flowCTRL" type="checkbox" class="value"/>
|
|
802
|
+
<label class="translate" for="flowCTRL">flow control</label>
|
|
803
|
+
</div>
|
|
804
|
+
|
|
602
805
|
<div class="input-field col s6 m3 l2">
|
|
603
806
|
<input id="baudRate" type="number" min="38400" max="115200" class="value"/>
|
|
604
807
|
<label class="translate" for="baudRate">Baudate Deconz/Conbee</label>
|
|
@@ -734,15 +937,15 @@
|
|
|
734
937
|
</div>
|
|
735
938
|
|
|
736
939
|
<div id="tab-dev" class="col s12 page">
|
|
737
|
-
<div id="develop" class="row">
|
|
940
|
+
<div id="develop" class="row col s12">
|
|
738
941
|
<div class="row">
|
|
739
|
-
<div class="col s12">
|
|
942
|
+
<div class="col s12 m12 l12">
|
|
740
943
|
<h6 class="translate">This page is needed only for advanced users that like to extend adapter
|
|
741
944
|
functionalities!</h6>
|
|
742
945
|
</div>
|
|
743
946
|
</div>
|
|
744
947
|
<div class="row">
|
|
745
|
-
<div class="col
|
|
948
|
+
<div class="col s12 m6 l6">
|
|
746
949
|
<p class="translate">notImplementedText</p>
|
|
747
950
|
<p><span class="translate">You find good explanations what the settings mean</span>
|
|
748
951
|
<a href="https://docs.smartthings.com/en/latest/device-type-developers-guide/zigbee-primer.html"
|
|
@@ -756,7 +959,7 @@
|
|
|
756
959
|
zigbee-herdsman-converters</a>) <span class="translate">to make it available for other user too</span>.
|
|
757
960
|
</p>
|
|
758
961
|
</div>
|
|
759
|
-
<div class="col
|
|
962
|
+
<div class="col s12 m6 l6">
|
|
760
963
|
<div class="blue-grey-text">
|
|
761
964
|
<h6 class="translate">Examples:</h6>
|
|
762
965
|
<ul class="collapsible">
|
|
@@ -818,15 +1021,15 @@
|
|
|
818
1021
|
</div>
|
|
819
1022
|
</div>
|
|
820
1023
|
</div>
|
|
821
|
-
<div class="col
|
|
1024
|
+
<div class="col s12 m12">
|
|
822
1025
|
<div class="row">
|
|
823
|
-
<div class="input-field col
|
|
1026
|
+
<div class="input-field col s12 m6 l4">
|
|
824
1027
|
<select id="dev-selector">
|
|
825
1028
|
<option value="" disabled selected class="translate">Select a device</option>
|
|
826
1029
|
</select>
|
|
827
1030
|
<label for="dev-selector" class="translate">Device</label>
|
|
828
1031
|
</div>
|
|
829
|
-
<div class="input-field col
|
|
1032
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
|
|
830
1033
|
title="Some kind of 'device within device'. Every endpoint may have different functions. If one does not work, test another.">
|
|
831
1034
|
<select id="ep-selector">
|
|
832
1035
|
<option value="" disabled selected class="translate">Select an Endpoint</option>
|
|
@@ -836,14 +1039,14 @@
|
|
|
836
1039
|
</div>
|
|
837
1040
|
<div class="row">
|
|
838
1041
|
<div class="row">
|
|
839
|
-
<div class="input-field col
|
|
1042
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon"
|
|
840
1043
|
title="Group of functions. AttributeIds will change depending on your choice here.">
|
|
841
1044
|
<select id="cid-selector">
|
|
842
1045
|
<option value="" disabled selected class="translate">Select cid</option>
|
|
843
1046
|
</select>
|
|
844
1047
|
<label for="cid-selector" class="translate">Cluster ID</label>
|
|
845
1048
|
</div>
|
|
846
|
-
<div class="input-field col
|
|
1049
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon"
|
|
847
1050
|
title="Command type. Available commands will change depending on your choice here. Some actions need Foundation, others Functional, you may test both.">
|
|
848
1051
|
<select id="cmd-type-selector">
|
|
849
1052
|
<option value="foundation" selected>Foundation</option>
|
|
@@ -851,21 +1054,21 @@
|
|
|
851
1054
|
</select>
|
|
852
1055
|
<label for="cid-selector" class="translate">Command Type</label>
|
|
853
1056
|
</div>
|
|
854
|
-
<div class="input-field col
|
|
1057
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon" title="The action you want to run.">
|
|
855
1058
|
<select id="cmd-selector">
|
|
856
1059
|
<option value="" disabled selected class="translate">Select Command</option>
|
|
857
1060
|
</select>
|
|
858
1061
|
<label for="cmd-selector" class="translate">Command</label>
|
|
859
1062
|
</div>
|
|
860
|
-
<div class="input-field col
|
|
1063
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon"
|
|
861
1064
|
title="The setting you are interested in.">
|
|
862
1065
|
<select id="attrid-selector">
|
|
863
1066
|
<option value="" disabled selected class="translate">Select Attribute</option>
|
|
864
1067
|
</select>
|
|
865
1068
|
<label for="attrid-selector" class="translate">Attribute ID</label>
|
|
866
1069
|
</div>
|
|
867
|
-
<div class="col
|
|
868
|
-
<div class="input-field col
|
|
1070
|
+
<div class="col s12">
|
|
1071
|
+
<div class="input-field col s12 m6 l4 offset-s1 admin-tooltip-icon translateT"
|
|
869
1072
|
title="Check if your Command needs to submit a value. For example, cmd 'write' needs the value you want to write to your device.">
|
|
870
1073
|
<label for="value-needed" style="pointer-events: auto;">
|
|
871
1074
|
<!-- workaround input not clickable https://codepen.io/alexisdiel/pen/gxwPWj -->
|
|
@@ -874,18 +1077,18 @@
|
|
|
874
1077
|
<span style="pointer-events: none;" class="translate">Needs value</span>
|
|
875
1078
|
</label>
|
|
876
1079
|
</div>
|
|
877
|
-
<div class="input-field col
|
|
1080
|
+
<div class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
|
|
878
1081
|
title="The value to send to your device (use douple-quotes if a number is a string).">
|
|
879
1082
|
<input id="value-input" disabled placeholder="0">
|
|
880
|
-
<label for="value-input">Value</label>
|
|
1083
|
+
<label for="value-input" class="move-label-up">Value</label>
|
|
881
1084
|
</div>
|
|
882
1085
|
</div>
|
|
883
1086
|
</div>
|
|
884
1087
|
</div>
|
|
885
1088
|
</div>
|
|
886
|
-
<div class="col
|
|
1089
|
+
<div class="col s12 m12 l12">
|
|
887
1090
|
<div class="row">
|
|
888
|
-
<div id="expert-toggle" class="input-field col s12 admin-tooltip-icon translateT"
|
|
1091
|
+
<div id="expert-toggle" class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
|
|
889
1092
|
title="Switch expert mode to enter raw data, sent to zigbee device.">
|
|
890
1093
|
<label for="expert-mode" style="pointer-events: auto;">
|
|
891
1094
|
<!-- workaround input not clickable https://codepen.io/alexisdiel/pen/gxwPWj -->
|
|
@@ -894,9 +1097,9 @@
|
|
|
894
1097
|
<span style="pointer-events: none;" class="translate">Expert mode</span>
|
|
895
1098
|
</label>
|
|
896
1099
|
</div>
|
|
897
|
-
<div id="expert-json-box" class="input-field col s12" style="display:none;">
|
|
1100
|
+
<div id="expert-json-box" class="input-field col s12 m12 l12" style="display:none;">
|
|
898
1101
|
<p class="translate">zigbee-shepherd</p>
|
|
899
|
-
<div class="input-field col s12">
|
|
1102
|
+
<div class="input-field col s12 m12 l12">
|
|
900
1103
|
<textarea id="expert-json" class="materialize-textarea"></textarea>
|
|
901
1104
|
<label for="expert-json">JSON</label>
|
|
902
1105
|
</div>
|
|
@@ -918,7 +1121,7 @@
|
|
|
918
1121
|
</div>
|
|
919
1122
|
<div id="sett" class="row">
|
|
920
1123
|
<a class="col s1 offset-s11 btn-small" onClick="$('#dev_result_log').html('');">Clear Log</a>
|
|
921
|
-
<div class="col s12" class="card-panel ">
|
|
1124
|
+
<div class="col s12 m12 l12" class="card-panel ">
|
|
922
1125
|
<div id="dev_result_log" class="card-content black white-text"></div>
|
|
923
1126
|
<label for="dev_result_log" class="translate">Results</label>
|
|
924
1127
|
</div>
|
|
@@ -956,7 +1159,7 @@
|
|
|
956
1159
|
</div>
|
|
957
1160
|
</div>
|
|
958
1161
|
<div id="tab-exclude" class="col s12 page">
|
|
959
|
-
<div class="row">
|
|
1162
|
+
<div class="row col s12">
|
|
960
1163
|
<p class="translate">ExcludeTextTranslation</p>
|
|
961
1164
|
</div>
|
|
962
1165
|
<div class="fixed-action-btn" style="margin-bottom: 100px">
|
|
@@ -973,7 +1176,7 @@
|
|
|
973
1176
|
<div class="materialize-dialogs m">
|
|
974
1177
|
<div id="modaledit" class="modal">
|
|
975
1178
|
<div class="modal-content">
|
|
976
|
-
<h3 class="translate">
|
|
1179
|
+
<h3 class="translate">Rename / Group device</h3>
|
|
977
1180
|
<div class="row">
|
|
978
1181
|
<div class="col1">
|
|
979
1182
|
<div class="input-field">
|
|
@@ -1042,6 +1245,51 @@
|
|
|
1042
1245
|
</div>
|
|
1043
1246
|
</div>
|
|
1044
1247
|
</div>
|
|
1248
|
+
<div class="row epid4">
|
|
1249
|
+
<div class="col epid">
|
|
1250
|
+
<div class=endpointid>
|
|
1251
|
+
<p class="translate device_with_endpoint">Sub Endpoint 4</p>
|
|
1252
|
+
</div>
|
|
1253
|
+
</div>
|
|
1254
|
+
<div class="col">
|
|
1255
|
+
<div class="input-field groups">
|
|
1256
|
+
<select id="d_groups_ep4" class="materialSelect" multiple>
|
|
1257
|
+
<option value="1">select</option>
|
|
1258
|
+
</select>
|
|
1259
|
+
<label for="d_groups_ep4" class="translate">Groups</label>
|
|
1260
|
+
</div>
|
|
1261
|
+
</div>
|
|
1262
|
+
</div>
|
|
1263
|
+
<div class="row epid5">
|
|
1264
|
+
<div class="col epid">
|
|
1265
|
+
<div class=endpointid>
|
|
1266
|
+
<p class="translate device_with_endpoint">Sub Endpoint 5</p>
|
|
1267
|
+
</div>
|
|
1268
|
+
</div>
|
|
1269
|
+
<div class="col">
|
|
1270
|
+
<div class="input-field groups">
|
|
1271
|
+
<select id="d_groups_ep5" class="materialSelect" multiple>
|
|
1272
|
+
<option value="1">select</option>
|
|
1273
|
+
</select>
|
|
1274
|
+
<label for="d_groups_ep5" class="translate">Groups</label>
|
|
1275
|
+
</div>
|
|
1276
|
+
</div>
|
|
1277
|
+
</div>
|
|
1278
|
+
<div class="row epid6">
|
|
1279
|
+
<div class="col epid">
|
|
1280
|
+
<div class=endpointid>
|
|
1281
|
+
<p class="translate device_with_endpoint">Sub Endpoint 6</p>
|
|
1282
|
+
</div>
|
|
1283
|
+
</div>
|
|
1284
|
+
<div class="col">
|
|
1285
|
+
<div class="input-field groups">
|
|
1286
|
+
<select id="d_groups_ep6" class="materialSelect" multiple>
|
|
1287
|
+
<option value="1">select</option>
|
|
1288
|
+
</select>
|
|
1289
|
+
<label for="d_groups_ep6" class="translate">Groups</label>
|
|
1290
|
+
</div>
|
|
1291
|
+
</div>
|
|
1292
|
+
</div>
|
|
1045
1293
|
</div>
|
|
1046
1294
|
<div class="modal-footer">
|
|
1047
1295
|
<a name="save" href="#!"
|
|
@@ -1218,6 +1466,12 @@
|
|
|
1218
1466
|
<span style="pointer-events: none;">Mesh</span>
|
|
1219
1467
|
</label>
|
|
1220
1468
|
</div>
|
|
1469
|
+
<div id="physicsOnTgl" class="input-field col s12 admin-tooltip-icon translateT"
|
|
1470
|
+
title="Physics On">
|
|
1471
|
+
<label for="physicsOn" style="pointer-events: auto;">
|
|
1472
|
+
<input style="pointer-events: none;" id="physicsOn" type="checkbox" class="filled-in"checked="checked"/> <span style="pointer-events: none;">Physics</span>
|
|
1473
|
+
</label>
|
|
1474
|
+
</div>
|
|
1221
1475
|
</div>
|
|
1222
1476
|
<div class="input-field input-group col s12 m6 l6">
|
|
1223
1477
|
<p class="translate">Device map info</p>
|