iobroker.zigbee 1.8.24 → 1.8.25
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 +8 -4
- package/admin/admin.js +9 -2
- package/admin/img/LED1923R5.png +0 -0
- package/admin/index_m.html +6 -6
- package/admin/tab_m.html +64 -56
- package/admin/vis-network.min.js +3 -4
- package/io-package.json +14 -14
- package/lib/developer.js +11 -5
- package/lib/devices.js +4 -0
- package/lib/exposes.js +1 -1
- package/lib/statescontroller.js +2 -2
- package/lib/utils.js +1 -1
- package/lib/zbDeviceAvailability.js +5 -5
- package/lib/zbDeviceConfigure.js +11 -9
- package/lib/zigbeecontroller.js +25 -5
- package/main.js +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -50,12 +50,12 @@ While Conbee/RaspBee Support is no longer considered experimental in the zigbee-
|
|
|
50
50
|
|
|
51
51
|
### Silicon Labs SoC
|
|
52
52
|
|
|
53
|
-
Support for [Silicon Lab Zigbee](https://www.silabs.com/wireless/zigbee) based adapters is experimental. The initial support for EZSP v8 is still not yet considered stable and the project is in need of more developers
|
|
53
|
+
Support for [Silicon Lab Zigbee](https://www.silabs.com/wireless/zigbee) based adapters is experimental. The initial support for EZSP v8 is still not yet considered stable and the project is in need of more developers volunteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/319) with regards to the state of Silabs EmberZNet Serial Protocol (EZSP) adapter implementation integration into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
### ZiGate SoC
|
|
57
57
|
|
|
58
|
-
Support for [ZiGate](https://zigate.fr) based adapters is experimental. The initial support for ZiGate is still not yet considered stable and the project is in need of more developers
|
|
58
|
+
Support for [ZiGate](https://zigate.fr) based adapters is experimental. The initial support for ZiGate is still not yet considered stable and the project is in need of more developers volunteering to help with this integration. Please refer to the respective documentation on [this page](https://www.zigbee2mqtt.io/guide/adapters/) and [ongoing development discussion](https://github.com/Koenkk/zigbee-herdsman/issues/242) with regards to the state of ZiGate adapter implementation into the zigbee-herdsman and zigbee-herdsman-converters libraries which it depends on.
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
## Work with adapter
|
|
@@ -134,8 +134,12 @@ You can thank the authors by these links:
|
|
|
134
134
|
-----------------------------------------------------------------------------------------------------
|
|
135
135
|
|
|
136
136
|
## Changelog
|
|
137
|
+
### 1.8.25 (2023-12-17)
|
|
138
|
+
* zhc 16.x
|
|
139
|
+
* (arteck) corr group from exclude dialog
|
|
140
|
+
|
|
137
141
|
### 1.8.24 (2023-09-05)
|
|
138
|
-
* (arteck) switch to exposes tab for some Aqara Devices
|
|
142
|
+
* (arteck) switch to exposes tab for some Aqara Devices [more infos](https://github.com/ioBroker/ioBroker.zigbee/wiki/Exposes-for-device-integration)
|
|
139
143
|
|
|
140
144
|
### 1.8.23 (2023-08-10)
|
|
141
145
|
* (arteck) query from xiaomi is now better
|
|
@@ -305,7 +309,7 @@ You can thank the authors by these links:
|
|
|
305
309
|
* (arteck) Setting to use exposes instead of internal device description
|
|
306
310
|
|
|
307
311
|
### 1.4.1 (2020-12)
|
|
308
|
-
* (o0shojo0o) added a kelvin
|
|
312
|
+
* (o0shojo0o) added a kelvin possibility into colortemp
|
|
309
313
|
* (asgothian) Hue_calibration for exposed devices (Use requires PR on zigbee-herdsman-converters, PR is being worked on)
|
|
310
314
|
* (asgothian) fix Tuya Thermostat: restore lost property "preset"
|
|
311
315
|
* (asgothian) Change for Device Availability: Stagger initial ping by 200 ms to prevent network congestion due to a large number of ping requests
|
package/admin/admin.js
CHANGED
|
@@ -655,9 +655,9 @@ function checkFwUpdate() {
|
|
|
655
655
|
const callback = function (msg) {
|
|
656
656
|
if (msg) {
|
|
657
657
|
const deviceCard = getDeviceCard(msg.device);
|
|
658
|
-
const devId = getDevId(deviceCard.attr('id'));
|
|
659
658
|
const fwInfoNode = getFwInfoNode(deviceCard);
|
|
660
659
|
if (msg.status == 'available') {
|
|
660
|
+
const devId = getDevId(deviceCard.attr('id'));
|
|
661
661
|
fwInfoNode.html(createBtn('system_update', 'Click to start firmware update', false));
|
|
662
662
|
$(fwInfoNode).find('button[name=\'fw_update\']').click(() => {
|
|
663
663
|
fwInfoNode.html(createBtn('check_circle', 'Firmware update started, check progress in logs.', true, 'icon-blue'));
|
|
@@ -677,7 +677,11 @@ function checkFwUpdate() {
|
|
|
677
677
|
};
|
|
678
678
|
for (let i = 0; i < deviceCards.length; i++) {
|
|
679
679
|
const deviceCard = $(deviceCards[i]);
|
|
680
|
-
const
|
|
680
|
+
const devIdAttr = deviceCard.attr('id');
|
|
681
|
+
if (!devIdAttr) {
|
|
682
|
+
continue;
|
|
683
|
+
}
|
|
684
|
+
const devId = getDevId(devIdAttr);
|
|
681
685
|
getFwInfoNode(deviceCard).html('<span class="left" style="padding-top:8px">checking...</span>');
|
|
682
686
|
sendTo(namespace, 'checkOtaAvail', {devId: devId}, callback);
|
|
683
687
|
}
|
|
@@ -2591,6 +2595,9 @@ function prepareExcludeDialog(excludeObj) {
|
|
|
2591
2595
|
}
|
|
2592
2596
|
return device.common.type;
|
|
2593
2597
|
} else {
|
|
2598
|
+
if (device.common.type == 'group') {
|
|
2599
|
+
return null;
|
|
2600
|
+
}
|
|
2594
2601
|
return device.common.type;
|
|
2595
2602
|
}
|
|
2596
2603
|
},
|
|
Binary file
|
package/admin/index_m.html
CHANGED
|
@@ -976,7 +976,7 @@
|
|
|
976
976
|
<div class="modal-content">
|
|
977
977
|
<h3 class="translate">Config device</h3>
|
|
978
978
|
<div class="row">
|
|
979
|
-
<div class="
|
|
979
|
+
<div class="col1">
|
|
980
980
|
<div class="input-field">
|
|
981
981
|
<input id="d_name" type="text" class="value validate">
|
|
982
982
|
<label for="d_name" class="translate">Name</label>
|
|
@@ -992,7 +992,7 @@
|
|
|
992
992
|
<div class="col1">
|
|
993
993
|
<div class="input-field groups">
|
|
994
994
|
<select id="d_groups_ep0" class="materialSelect" multiple>
|
|
995
|
-
<option value="1">
|
|
995
|
+
<option value="1">select</option>
|
|
996
996
|
</select>
|
|
997
997
|
<label for="d_groups_ep0" class="translate">Groups</label>
|
|
998
998
|
</div>
|
|
@@ -1007,7 +1007,7 @@
|
|
|
1007
1007
|
<div class="col">
|
|
1008
1008
|
<div class="input-field groups">
|
|
1009
1009
|
<select id="d_groups_ep1" class="materialSelect" multiple>
|
|
1010
|
-
<option value="1">
|
|
1010
|
+
<option value="1">select</option>
|
|
1011
1011
|
</select>
|
|
1012
1012
|
<label for="d_groups_ep1" class="translate">Groups</label>
|
|
1013
1013
|
</div>
|
|
@@ -1022,7 +1022,7 @@
|
|
|
1022
1022
|
<div class="col">
|
|
1023
1023
|
<div class="input-field groups">
|
|
1024
1024
|
<select id="d_groups_ep2" class="materialSelect" multiple>
|
|
1025
|
-
<option value="1">
|
|
1025
|
+
<option value="1">select</option>
|
|
1026
1026
|
</select>
|
|
1027
1027
|
<label for="d_groups_ep2" class="translate">Groups</label>
|
|
1028
1028
|
</div>
|
|
@@ -1037,7 +1037,7 @@
|
|
|
1037
1037
|
<div class="col">
|
|
1038
1038
|
<div class="input-field groups">
|
|
1039
1039
|
<select id="d_groups_ep3" class="materialSelect" multiple>
|
|
1040
|
-
<option value="1">
|
|
1040
|
+
<option value="1">select</option>
|
|
1041
1041
|
</select>
|
|
1042
1042
|
<label for="d_groups_ep3" class="translate">Groups</label>
|
|
1043
1043
|
</div>
|
|
@@ -1076,7 +1076,7 @@
|
|
|
1076
1076
|
<div class="input-field members">
|
|
1077
1077
|
<label for="g_members" class="translate">Members</label>
|
|
1078
1078
|
<select id="g_members" class="materialSelect" multiple>
|
|
1079
|
-
<option value="1"
|
|
1079
|
+
<option value="1">value</option>
|
|
1080
1080
|
</select>
|
|
1081
1081
|
</div>
|
|
1082
1082
|
</div>
|
package/admin/tab_m.html
CHANGED
|
@@ -672,67 +672,75 @@
|
|
|
672
672
|
<div class="materialize-dialogs m">
|
|
673
673
|
<div id="modaledit" class="modal">
|
|
674
674
|
<div class="modal-content">
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
</div>
|
|
684
|
-
<div class="row epid0">
|
|
685
|
-
<div class="col">
|
|
686
|
-
<div class=endpointid>
|
|
687
|
-
<p class="translate device_with_endpoint">Main Endpoint</p>
|
|
688
|
-
</div>
|
|
689
|
-
</div>
|
|
690
|
-
<div class="col1">
|
|
691
|
-
<div class="input-field groups">
|
|
692
|
-
<select id="d_groups_ep0" class="materialSelect" multiple><option value="1">value</option></select>
|
|
693
|
-
<label for="d_groups_ep0" class="translate">Groups</label>
|
|
694
|
-
</div>
|
|
695
|
-
</div>
|
|
696
|
-
</div>
|
|
697
|
-
<div class="row epid1">
|
|
698
|
-
<div class="col epid">
|
|
699
|
-
<div class=endpointid>
|
|
700
|
-
<p class="translate device_with_endpoint">Sub Endpoint 1</p>
|
|
701
|
-
</div>
|
|
702
|
-
</div>
|
|
703
|
-
<div class="col">
|
|
704
|
-
<div class="input-field groups">
|
|
705
|
-
<select id="d_groups_ep1" class="materialSelect" multiple><option value="1">value</option></select>
|
|
706
|
-
<label for="d_groups_ep1" class="translate">Groups</label>
|
|
707
|
-
</div>
|
|
675
|
+
<h3 class="translate">Config device</h3>
|
|
676
|
+
<div class="row">
|
|
677
|
+
<div class="col1">
|
|
678
|
+
<div class="input-field">
|
|
679
|
+
<input id="d_name" type="text" class="value validate">
|
|
680
|
+
<label for="d_name" class="translate">Name</label>
|
|
681
|
+
</div>
|
|
682
|
+
</div>
|
|
708
683
|
</div>
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
684
|
+
<div class="row epid0">
|
|
685
|
+
<div class="col">
|
|
686
|
+
<div class=endpointid>
|
|
687
|
+
<p class="translate device_with_endpoint">Main Endpoint</p>
|
|
688
|
+
</div>
|
|
689
|
+
</div>
|
|
690
|
+
<div class="col1">
|
|
691
|
+
<div class="input-field groups">
|
|
692
|
+
<select id="d_groups_ep0" class="materialSelect" multiple>
|
|
693
|
+
<option value="1">select</option>
|
|
694
|
+
</select>
|
|
695
|
+
<label for="d_groups_ep0" class="translate">Groups</label>
|
|
696
|
+
</div>
|
|
697
|
+
</div>
|
|
715
698
|
</div>
|
|
716
|
-
<div class="
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
699
|
+
<div class="row epid1">
|
|
700
|
+
<div class="col epid">
|
|
701
|
+
<div class=endpointid>
|
|
702
|
+
<p class="translate device_with_endpoint">Sub Endpoint 1</p>
|
|
703
|
+
</div>
|
|
704
|
+
</div>
|
|
705
|
+
<div class="col">
|
|
706
|
+
<div class="input-field groups">
|
|
707
|
+
<select id="d_groups_ep1" class="materialSelect" multiple>
|
|
708
|
+
<option value="1">select</option>
|
|
709
|
+
</select>
|
|
710
|
+
<label for="d_groups_ep1" class="translate">Groups</label>
|
|
711
|
+
</div>
|
|
712
|
+
</div>
|
|
721
713
|
</div>
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
714
|
+
<div class="row epid2">
|
|
715
|
+
<div class="col epid">
|
|
716
|
+
<div class=endpointid>
|
|
717
|
+
<p class="translate device_with_endpoint">Sub Endpoint 2</p>
|
|
718
|
+
</div>
|
|
719
|
+
</div>
|
|
720
|
+
<div class="col">
|
|
721
|
+
<div class="input-field groups">
|
|
722
|
+
<select id="d_groups_ep2" class="materialSelect" multiple>
|
|
723
|
+
<option value="1">select</option>
|
|
724
|
+
</select>
|
|
725
|
+
<label for="d_groups_ep2" class="translate">Groups</label>
|
|
726
|
+
</div>
|
|
727
|
+
</div>
|
|
728
728
|
</div>
|
|
729
|
-
<div class="
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
729
|
+
<div class="row epid3">
|
|
730
|
+
<div class="col epid">
|
|
731
|
+
<div class=endpointid>
|
|
732
|
+
<p class="translate device_with_endpoint">Sub Endpoint 3</p>
|
|
733
|
+
</div>
|
|
734
|
+
</div>
|
|
735
|
+
<div class="col">
|
|
736
|
+
<div class="input-field groups">
|
|
737
|
+
<select id="d_groups_ep3" class="materialSelect" multiple>
|
|
738
|
+
<option value="1">select</option>
|
|
739
|
+
</select>
|
|
740
|
+
<label for="d_groups_ep3" class="translate">Groups</label>
|
|
741
|
+
</div>
|
|
742
|
+
</div>
|
|
734
743
|
</div>
|
|
735
|
-
</div>
|
|
736
744
|
</div>
|
|
737
745
|
<div class="modal-footer">
|
|
738
746
|
<a name="save" href="#!" class="modal-action modal-close waves-effect waves-green btn green translate">Save</a>
|