iobroker.zigbee 2.0.5 → 3.0.0

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.
@@ -398,6 +398,11 @@
398
398
  height: 12px;
399
399
  }
400
400
 
401
+ .monospaced {
402
+ font-family: monospace !important;
403
+ resize: none;
404
+ }
405
+
401
406
  .m .dash input[type="checkbox"] + span:not(.lever) {
402
407
  width: 10px;
403
408
  height: 12px;
@@ -476,6 +481,17 @@
476
481
  z-index: unset;
477
482
  }
478
483
 
484
+ @keyframes blinking-icon {
485
+ 0% { opacity: 0; }
486
+ 25% { opacity: 1; }
487
+ 50% { opacity: 0; }
488
+ 75% { opacity: 1; }
489
+ 100% { opacity: 0; }
490
+ }
491
+ .blinking {
492
+ animation: bliking-icon 4s infinite;
493
+ }
494
+
479
495
  /* Style for medium Screens */
480
496
  @media screen and (max-width: 900px) {
481
497
  .m nav ul a.btn-floating {
@@ -650,6 +666,10 @@
650
666
  </p>
651
667
  </div>
652
668
  <ul id="nav-mobile" class="right">
669
+ <li>
670
+ <a id="ErrorNotificationBtn" class="btn-floating waves-effect waves-light black tooltipped center-align hoverable translateT hide" title="Zigbee not running">
671
+ <i id="ErrorNotificationIcon" class="material-icons large icon-red">error</i></a>
672
+ </li>
653
673
  <li>
654
674
  <a id="state_cleanup_btn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="State Cleanup">
655
675
  <i class="material-icons large icon-blue">delete_sweep</i></a>
@@ -693,11 +713,13 @@
693
713
  <div class="nav-content">
694
714
  <ul class="tabs tabs-transparent">
695
715
  <li class="tab col s2"><a href="#tab-sett" id="settings" class="translate tooltipped">Settings</a></li>
716
+ <li class="tab col s2"><a href="#tab-herdsman" id="hardware" class="translate tooltipped">Hardware</a></li>
696
717
  <!--<li class="tab col s2"><a href="#tab-map" id="tabmap" class="translate tooltipped">Network map</a></li> -->
697
718
  <!--<li class="tab col s1"><a href="#tab-binding" class="translate tooltipped">Binding</a></li> -->
698
719
  <li class="tab col s2"><a href="#tab-exclude" class="translate tooltipped">Local Overrides</a></li>
699
720
  <li class="tab col s2"><a href="#tab-main" id="devs" class="translate tooltipped">Devices</a></li>
700
721
  <li class="tab col s2"><a href="#tab-dev" id="develop" class="translate tooltipped">Developer</a>
722
+ <li class="tab col s2"><a href="#tab-debug" id="tabdebug" class="translate">Debug</a></li>
701
723
  </li>
702
724
  </ul>
703
725
  </div>
@@ -773,8 +795,61 @@
773
795
  </div>
774
796
  </div>
775
797
  <div id="tab-sett" class="col s12 page">
776
- <div id="sett" class="row">
777
- <div class="input-field input-group col s12 m6 l4">
798
+ <div class="row">
799
+ <h6>Adapter</h6>
800
+ <div class="input-field col s12 m6 l8 col-transmitPower">
801
+ <select id="transmitPower" class="value" >
802
+ <option value="" disabled selected class="translate">transmitPower</option>
803
+ <option value="-22">low</option>
804
+ <option value="0">norm</option>
805
+ <option value="19">high</option>
806
+ <option value="20">high+</option>
807
+ </select>
808
+ <label class="translate" for="transmitPower">transmitPower</label>
809
+ </div>
810
+ <div class="input-field col s12 m6 l2">
811
+ <input id="countDown" type="number" min="10" max="240" class="value"/>
812
+ <label class="translate" for="countDown">Countdown</label>
813
+ </div>
814
+ <div class="input-field col s12 m6 l4 col-disableLed">
815
+ <input id="disableLed" type="checkbox" class="value"/>
816
+ <label class="translate" for="disableLed">Disable LED for cc2531</label>
817
+ </div>
818
+ <div class="input-field col s12 m6 l4 col-disablePing">
819
+ <input id="disablePing" type="checkbox" class="value"/>
820
+ <label class="translate" for="disablePing">Disable active availability check</label>
821
+ </div>
822
+ <div class="input-field col s12 m6 l4 col-debugHerdsman">
823
+ <input id="debugHerdsman" type="checkbox" class="value"/>
824
+ <label class="translate" for="debugHerdsman">Zigbee-herdsman debug info</label>
825
+ </div>
826
+ <div class="input-field col s12 m6 l4 col-warnOnDeviceAnnouncement">
827
+ <input id="warnOnDeviceAnnouncement" type="checkbox" class="value"/>
828
+ <label class="translate" for="warnOnDeviceAnnouncement">Log warning on Zigbee device announcement</label>
829
+ </div>
830
+ <div class="input-field col s12 m6 l4 col-disableBackup">
831
+ <input id="disableBackup" type="checkbox" class="value"/>
832
+ <label class="translate" for="disableBackup">disable internal Backup</label>
833
+ </div>
834
+ </div>
835
+ <div class="row">
836
+ <h6 class="translate">External converters</h6>
837
+ <div class="input-field col s12 m6 l4">
838
+ <input id="external" type="text" class="value"/>
839
+ <label class="translate" for="external">Paths to files, semicolon (;) splitted</label>
840
+ </div>
841
+ </div>
842
+ <div class="input-field col s12 m12 l12 col-startWithInconsistent">
843
+ <input id="startWithInconsistent" type="checkbox" class="value"/>
844
+ <label class="translate" for="startWithInconsistent">SettingsExclude</label>
845
+ </div>
846
+ </div>
847
+ <div id="tab-herdsman" class="col s12 page">
848
+ <div class="row">
849
+ <h6>Zigbee hardware and network settings</h6>
850
+ </div>
851
+ <div id="port-row" class="row">
852
+ <div class="input-field input-group col">
778
853
  <input id="port" type="text" class="value validate"/>
779
854
  <label for="port" class="translate">COM port name</label>
780
855
  <span class="suffix">
@@ -783,9 +858,11 @@
783
858
  <!-- Dropdown Structure -->
784
859
  <ul id='ports' class='dropdown-content'>
785
860
  </ul>
786
- </span>
861
+ </span>
787
862
  </div>
788
- <div class="input-field col s12 m6 l2">
863
+ </div>
864
+ <div id="sett" class="row">
865
+ <div class="input-field col s12 m6 l2">
789
866
  <select id="adapterType" class="value">
790
867
  <option value="" disabled selected class="translate">Choose type</option>
791
868
  <option value="zstack">TI Z-Stack/CCxxxx</option>
@@ -796,127 +873,94 @@
796
873
  </select>
797
874
  <label class="translate">Type</label>
798
875
  </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
-
805
876
  <div class="input-field col s6 m3 l2">
806
877
  <input id="baudRate" type="number" min="38400" max="115200" class="value"/>
807
878
  <label class="translate" for="baudRate">Baudate Deconz/Conbee</label>
808
879
  </div>
809
880
  <div class="input-field col s6 m3 l2">
810
- <input id="countDown" type="number" min="10" max="240" class="value"/>
811
- <label class="translate" for="countDown">Countdown</label>
881
+ <input id="flowCTRL" type="checkbox" class="value"/>
882
+ <label class="translate" for="flowCTRL">flow control</label>
812
883
  </div>
813
884
  </div>
814
885
  <div class="row">
815
- <h6>Network</h6>
816
- <div class="row">
817
- <div class="input-field col s12 m6 l4">
818
- <input id="extPanID" type="text" pattern="[a-fA-F\d]+" minlength="16" maxlength="16"
819
- class="validate value"/>
820
- <label class="translate" for="extPanID">ExtPanID</label>
821
- </div>
822
- <div class="input-field col s12 m6 l8">
823
- <p class="translate">ExtPanIDText</p>
824
- </div>
886
+ <div class="input-field col s9 m4 l3">
887
+ <input id="extPanID" type="text" pattern="[a-fA-F\d]+" minlength="16" maxlength="16"
888
+ class="validate value"/>
889
+ <label class="translate" for="extPanID">ExtPanID
890
+ <i id="extPanID_OK" class="material-icons tiny icon-green">check</i>
891
+ <i id="extPanID_NOK" class="material-icons tiny icon-red">clear</i>
892
+ <i id="extPanID_ALERT" class="material-icons tiny icon-orange hide">report_problem</i>
893
+ </label>
825
894
  </div>
826
- <div class="row">
827
- <div class="input-field col s12 m6 l4">
828
- <input id="panID" type="number" min="1" max="65565" class="value"/>
829
- <label class="translate" for="panID">PanID</label>
830
- </div>
831
- <div class="input-field col s12 m6 l8">
832
- <p class="translate">PanIDText</p>
833
- </div>
834
-
895
+ <div class="input-field col s12 m6 l8">
896
+ <p class="translate">ExtPanIDText</p>
835
897
  </div>
836
- <div class="row">
837
- <div class="input-field suffix col s12 m6 l4">
838
- <select id="channel" class="value">
839
- <option value="" disabled selected class="translate">Choose channel</option>
840
- <option value="11">11</option>
841
- <option value="12">12</option>
842
- <option value="13">13</option>
843
- <option value="14">14</option>
844
- <option value="15">15</option>
845
- <option value="16">16</option>
846
- <option value="17">17</option>
847
- <option value="18">18</option>
848
- <option value="19">19</option>
849
- <option value="20">20</option>
850
- <option value="21">21</option>
851
- <option value="22">22</option>
852
- <option value="23">23</option>
853
- <option value="24">24</option>
854
- <option value="25">25</option>
855
- <option value="26">26</option>
856
- </select>
857
- <label class="translate">Channel</label>
858
- <a id="scan" class='btn' data-target='channel'><i class="material-icons">graphic_eq</i></a>
859
- </div>
860
- <div class="input-field col s12 m6 l8">
861
- <p class="translate">ChannelChangeText</p>
862
- </div>
898
+ </div>
899
+ <div class="row">
900
+ <div class="input-field col s9 m4 l3">
901
+ <input id="panID" type="number" min="1" max="65565" class="value"/>
902
+ <label class="translate" for="panID">PanID
903
+ <i id="panID_OK" class="material-icons tiny icon-green">check</i>
904
+ <i id="panID_NOK" class="material-icons tiny icon-red">clear</i>
905
+ <i id="panID_ALERT" class="material-icons tiny icon-orange hide">report_problem</i>
906
+ </label>
863
907
  </div>
864
- <div class="input-field col s12 m6 l4">
865
- <input id="precfgkey" type="text" pattern="[a-fA-F\d]+" class="validate value"/>
866
- <label class="translate" for="precfgkey">Transport Key</label>
908
+ <div class="input-field col s12 m6 l8">
909
+ <p class="translate">PanIDText</p>
867
910
  </div>
868
- <div class="input-field col s12 m6 l4 col-transmitPower">
869
- <select id="transmitPower" class="value">
870
- <option value="" disabled selected class="translate">transmitPower</option>
871
- <option value="-22">low</option>
872
- <option value="0">norm</option>
873
- <option value="19">high</option>
874
- <option value="20">high+</option>
875
- </select>
876
- <label class="translate" for="transmitPower">transmitPower</label>
911
+
912
+ </div>
913
+ <div class="row">
914
+ <div class="input-field suffix col s9 m4 l3">
915
+ <input id="channel" type="number" min="11" max=" 26" class="value"/>
916
+ <label class="translate">Channel
917
+ <i id="channel_OK" class="material-icons tiny icon-green">check</i>
918
+ <i id="channel_NOK" class="material-icons tiny icon-red">clear</i>
919
+ <i id="channel_ALERT" class="material-icons tiny icon-orange">report_problem</i>
920
+ </label>
921
+ </div>
922
+ <div class="input-field col s12 m6 l8">
923
+ <a id="scan" class='btn' data-target='channel_a'><i class="material-icons">graphic_eq</i></a>
924
+ <p class="translate">ChannelChangeText</p>
877
925
  </div>
878
926
  </div>
879
-
880
927
  <div class="row">
881
- <h6 class="translate">Others</h6>
882
- <div class="input-field col s12 m6 l4 col-disableLed">
883
- <input id="disableLed" type="checkbox" class="value"/>
884
- <label class="translate" for="disableLed">Disable LED for cc2531</label>
928
+ <div class="input-field col s9 m4 l3 disabled">
929
+ <input id="precfgkey" type="text" pattern="[a-fA-F\d]+" class="validate value disabled"/>
930
+ <label class="translate" for="precfgkey">Transport Key
931
+ <i id="precfgkey_OK" class="material-icons tiny icon-green">check</i>
932
+ <i id="precfgkey_NOK" class="material-icons tiny icon-red">clear</i>
933
+ </label>
885
934
  </div>
886
- <div class="input-field col s12 m6 l4 col-disablePing">
887
- <input id="disablePing" type="checkbox" class="value"/>
888
- <label class="translate" for="disablePing">Disable active availability check</label>
935
+ <div class="input-field col s9 m4 l2">
936
+ <input id="autostart" type="checkbox" class="value"/>
937
+ <label class="translate" for="flowCTRL">start the Zigbee network automatically</label>
889
938
  </div>
890
- <div class="input-field col s12 m6 l4 col-debugHerdsman">
891
- <input id="debugHerdsman" type="checkbox" class="value"/>
892
- <label class="translate" for="debugHerdsman">Zigbee-herdsman debug info</label>
939
+ </div>
940
+ <div class="row">
941
+ <h6>Verification</h6>
942
+ </div>
943
+ <div class="row">
944
+ <div class="input-field col s9 m4 l3">
945
+ <a id="test-btn" class="waves-effect waves-light white-text btn-large translate">Test Port</a>
893
946
  </div>
894
- <div class="input-field col s12 m6 l4 col-warnOnDeviceAnnouncement">
895
- <input id="warnOnDeviceAnnouncement" type="checkbox" class="value"/>
896
- <label class="translate" for="warnOnDeviceAnnouncement">Log warning on Zigbee device announcement</label>
947
+ <div class="input-field col s9 m4 l3">
948
+ <a id="show_test_run" class="waves-effect waves-light white-text btn-large translate">Start / Stop</a>
897
949
  </div>
898
- <div class="input-field col s12 m6 l4">
899
- <a id="reset-btn" class="waves-effect waves-light white-text btn-large translate">Reset...</a>
950
+ <div class="input-field col s9 m4 l3">
951
+ <a id="readNVRam-btn" class="waves-effect waves-light white-text btn-large translate">Read NVBackup</a>
900
952
  </div>
901
- <div class="input-field col s12 m6 l4 col-disableBackup">
902
- <input id="disableBackup" type="checkbox" class="value"/>
903
- <label class="translate" for="disableBackup">disable internal Backup</label>
953
+ <div class="input-field col s9 m4 l3">
954
+ <a id="deleteNVRam-btn" class="waves-effect waves-light white-text btn-large translate">remove NVBackup</a>
904
955
  </div>
905
-
906
- </div>
907
- <div class="row">
908
- <h6 class="translate">External converters</h6>
909
- <div class="input-field col s12 m6 l4">
910
- <input id="external" type="text" class="value"/>
911
- <label class="translate" for="external">Paths to files, semicolon (;) splitted</label>
956
+ <div class="input-field col s9 m4 l3">
957
+ <a id="reset-btn" class="waves-effect waves-light white-text btn-large translate">Reset...</a>
912
958
  </div>
913
959
  </div>
914
- <div class="input-field col s12 m12 l12 col-startWithInconsistent">
915
- <input id="startWithInconsistent" type="checkbox" class="value"/>
916
- <label class="translate" for="startWithInconsistent">SettingsExclude</label>
960
+ <div class="row textarea">
961
+ <textarea class="monospaced" id="stdout_t" disabled="disabled" cols="120" rows="20" style="height: calc(50% - 115px)"></textarea>
917
962
  </div>
918
963
  </div>
919
-
920
964
  <div id="tab-expos" class="col s12 page">
921
965
  <div id="exposes" class="row">
922
966
  <a class="btn-floating waves-effect waves-light blue table-button-add"><i class="material-icons">add</i></a>
@@ -935,7 +979,6 @@
935
979
  </div>
936
980
  </div>
937
981
  </div>
938
-
939
982
  <div id="tab-dev" class="col s12 page">
940
983
  <div id="develop" class="row col s12">
941
984
  <div class="row">
@@ -949,7 +992,7 @@
949
992
  <p class="translate">notImplementedText</p>
950
993
  <p><span class="translate">You find good explanations what the settings mean</span>&nbsp;
951
994
  <a href="https://docs.smartthings.com/en/latest/device-type-developers-guide/zigbee-primer.html"
952
- target="_blank" class="translate">here</a>&nbsp;
995
+ target="_blank" class="translate">here</a>&nbsp;
953
996
  <span class="translate">and in</span>&nbsp<a
954
997
  href="https://www.nxp.com/docs/en/user-guide/JN-UG-3115.pdf" target="_blank">ZigBee
955
998
  Cluster Library</a>.
@@ -1030,7 +1073,7 @@
1030
1073
  <label for="dev-selector" class="translate">Device</label>
1031
1074
  </div>
1032
1075
  <div class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
1033
- title="Some kind of 'device within device'. Every endpoint may have different functions. If one does not work, test another.">
1076
+ title="Some kind of 'device within device'. Every endpoint may have different functions. If one does not work, test another.">
1034
1077
  <select id="ep-selector">
1035
1078
  <option value="" disabled selected class="translate">Select an Endpoint</option>
1036
1079
  </select>
@@ -1040,14 +1083,14 @@
1040
1083
  <div class="row">
1041
1084
  <div class="row">
1042
1085
  <div class="input-field col s12 m6 l4 admin-tooltip-icon"
1043
- title="Group of functions. AttributeIds will change depending on your choice here.">
1086
+ title="Group of functions. AttributeIds will change depending on your choice here.">
1044
1087
  <select id="cid-selector">
1045
1088
  <option value="" disabled selected class="translate">Select cid</option>
1046
1089
  </select>
1047
1090
  <label for="cid-selector" class="translate">Cluster ID</label>
1048
1091
  </div>
1049
1092
  <div class="input-field col s12 m6 l4 admin-tooltip-icon"
1050
- title="Command type. Available commands will change depending on your choice here. Some actions need Foundation, others Functional, you may test both.">
1093
+ title="Command type. Available commands will change depending on your choice here. Some actions need Foundation, others Functional, you may test both.">
1051
1094
  <select id="cmd-type-selector">
1052
1095
  <option value="foundation" selected>Foundation</option>
1053
1096
  <option value="functional">Functional</option>
@@ -1061,7 +1104,7 @@
1061
1104
  <label for="cmd-selector" class="translate">Command</label>
1062
1105
  </div>
1063
1106
  <div class="input-field col s12 m6 l4 admin-tooltip-icon"
1064
- title="The setting you are interested in.">
1107
+ title="The setting you are interested in.">
1065
1108
  <select id="attrid-selector">
1066
1109
  <option value="" disabled selected class="translate">Select Attribute</option>
1067
1110
  </select>
@@ -1069,16 +1112,16 @@
1069
1112
  </div>
1070
1113
  <div class="col s12">
1071
1114
  <div class="input-field col s12 m6 l4 offset-s1 admin-tooltip-icon translateT"
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.">
1115
+ title="Check if your Command needs to submit a value. For example, cmd 'write' needs the value you want to write to your device.">
1073
1116
  <label for="value-needed" style="pointer-events: auto;">
1074
1117
  <!-- workaround input not clickable https://codepen.io/alexisdiel/pen/gxwPWj -->
1075
1118
  <input style="pointer-events: none;" id="value-needed" type="checkbox"
1076
- class="filled-in"/>
1119
+ class="filled-in"/>
1077
1120
  <span style="pointer-events: none;" class="translate">Needs value</span>
1078
1121
  </label>
1079
1122
  </div>
1080
1123
  <div class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
1081
- title="The value to send to your device (use douple-quotes if a number is a string).">
1124
+ title="The value to send to your device (use douple-quotes if a number is a string).">
1082
1125
  <input id="value-input" disabled placeholder="0">
1083
1126
  <label for="value-input" class="move-label-up">Value</label>
1084
1127
  </div>
@@ -1089,11 +1132,11 @@
1089
1132
  <div class="col s12 m12 l12">
1090
1133
  <div class="row">
1091
1134
  <div id="expert-toggle" class="input-field col s12 m6 l4 admin-tooltip-icon translateT"
1092
- title="Switch expert mode to enter raw data, sent to zigbee device.">
1135
+ title="Switch expert mode to enter raw data, sent to zigbee device.">
1093
1136
  <label for="expert-mode" style="pointer-events: auto;">
1094
1137
  <!-- workaround input not clickable https://codepen.io/alexisdiel/pen/gxwPWj -->
1095
1138
  <input style="pointer-events: none;" id="expert-mode" type="checkbox"
1096
- class="filled-in"/>
1139
+ class="filled-in"/>
1097
1140
  <span style="pointer-events: none;" class="translate">Expert mode</span>
1098
1141
  </label>
1099
1142
  </div>
@@ -1113,8 +1156,8 @@
1113
1156
  </div>
1114
1157
  <div class="card-action">
1115
1158
  <a id="dev-send-btn"
1116
- class="waves-effect waves-light white-text btn-large tooltipped translateT translate"
1117
- data-position="bottom" title="Send data to Zigbee">Run</a>
1159
+ class="waves-effect waves-light white-text btn-large tooltipped translateT translate"
1160
+ data-position="bottom" title="Send data to Zigbee">Run</a>
1118
1161
  </div>
1119
1162
  </div>
1120
1163
  </div>
@@ -1142,8 +1185,8 @@
1142
1185
  </table>
1143
1186
  </div>
1144
1187
  <a id="add_group"
1145
- class="btn-floating waves-effect waves-light blue table-button-add tooltipped hoverable translateT"
1146
- title="Add group">
1188
+ class="btn-floating waves-effect waves-light blue table-button-add tooltipped hoverable translateT"
1189
+ title="Add group">
1147
1190
  <i class="material-icons">add</i>
1148
1191
  </a>
1149
1192
  </div>
@@ -1152,8 +1195,8 @@
1152
1195
  <div id="tab-binding" class="col s12 page">
1153
1196
  <div class="fixed-action-btn" style="margin-bottom: 100px">
1154
1197
  <a id="add_binding"
1155
- class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
1156
- title="Add binding"><i class="material-icons large">add</i></a>
1198
+ class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
1199
+ title="Add binding"><i class="material-icons large">add</i></a>
1157
1200
  </div>
1158
1201
  <div id="binding" class="row">
1159
1202
  </div>
@@ -1164,12 +1207,16 @@
1164
1207
  </div>
1165
1208
  <div class="fixed-action-btn" style="margin-bottom: 100px">
1166
1209
  <a id="add_exclude"
1167
- class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
1168
- title="Add exlude"><i class="material-icons large">add</i></a>
1210
+ class="btn-floating waves-effect waves-light blue tooltipped center-align hoverable translateT"
1211
+ title="Add exlude"><i class="material-icons large">add</i></a>
1169
1212
  </div>
1170
1213
  <div id="exclude" class="row">
1171
1214
  </div>
1172
1215
  </div>
1216
+ <div id="tab-debug" class="col s12 page">
1217
+ <ul id="dbg_data_list">
1218
+ </ul>
1219
+ </div>
1173
1220
  </div>
1174
1221
  </div>
1175
1222
 
@@ -1447,14 +1494,12 @@
1447
1494
  <div id="progress_line" class="determinate" style="width: 0%"></div>
1448
1495
  </div>
1449
1496
  <div class="row textarea">
1450
- <textarea id="stdout" disabled="disabled" cols="120" rows="30"
1451
- style="height: calc(100% - 115px)"></textarea>
1497
+ <textarea id="stdout" disabled="disabled" cols="120" rows="30" style="height: calc(100% - 115px)"></textarea>
1452
1498
  </div>
1453
1499
  </div>
1454
1500
  <div class="modal-footer">
1455
1501
  <!-- <a name="stop" href="#!" class="modal-action modal-close waves-effect waves-red btn-flat left">Stop</a> -->
1456
- <a name="hide" href="#!"
1457
- class="modal-action modal-close waves-effect waves-green btn green translate">Hide</a>
1502
+ <a name="hidepairing" id="hidepairing" href="#!" class="modal-action modal-close waves-effect waves-green btn green translate">Hide</a>
1458
1503
  </div>
1459
1504
  </div>
1460
1505
 
@@ -1464,7 +1509,6 @@
1464
1509
  <p class="translate">Reset Info</p>
1465
1510
  <a id="soft" data-mode="soft" class="modal-action modal-close waves-effect waves-red btn translate">Soft-Reset</a>
1466
1511
  <a id="hard" data-mode="hard" class="modal-action modal-close waves-effect waves-red btn translate">Hard-Reset</a>
1467
- <a id="delNvbackup" data-mode="delNvbackup" class="modal-action modal-close waves-effect waves-red btn translate">delete NVBackup.json</a>
1468
1512
  </div>
1469
1513
  <div class="modal-footer">
1470
1514
  <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat translate">Cancel</a>
package/admin/tab_m.html CHANGED
@@ -663,10 +663,14 @@
663
663
  <img src="zigbee.png" class="zlogo left" height="64px"/>
664
664
  <p>
665
665
  <h5 class="translate">Zigbee adapter</h5>
666
- </p>
667
- </div>
668
- <ul id="nav-mobile" class="right">
666
+ </p></div>
667
+ <ul id="nav-mobile" class="right">
668
+ <li>
669
+ <a id="ErrorNotificationBtn" class="btn-floating waves-effect waves-light black tooltipped center-align hoverable translateT hide" title="Zigbee not running">
670
+ <i class="material-icons large icon-red">error</i></a>
671
+ </li>
669
672
  <li>
673
+ <li>
670
674
  <a id="state_cleanup_btn" class="btn-floating waves-effect waves-light red tooltipped center-align hoverable translateT hide" title="State Cleanup">
671
675
  <i class="material-icons large icon-blue">delete_sweep</i></a>
672
676
  </li>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file