iobroker.zigbee 2.0.0 → 2.0.2
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 +40 -10
- package/admin/admin.js +312 -125
- package/admin/img/PTM 215Z.png +0 -0
- package/admin/img/group_0.png +0 -0
- package/admin/img/group_x.png +0 -0
- package/admin/img/philips_hue_lom001.png +0 -0
- package/admin/index_m.html +95 -45
- package/admin/tab_m.html +116 -48
- package/docs/de/img/Zigbee_config_de.png +0 -0
- package/docs/de/img/Zigbee_tab_de.png +0 -0
- package/docs/de/readme.md +21 -28
- package/docs/en/img/Zigbee_config_en.png +0 -0
- package/docs/en/img/Zigbee_tab_en.png +0 -0
- 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 +55 -41
- package/lib/binding.js +1 -1
- package/lib/colors.js +7 -0
- package/lib/commands.js +136 -20
- package/lib/developer.js +0 -0
- package/lib/devices.js +88 -74
- package/lib/exclude.js +30 -54
- package/lib/exposes.js +247 -290
- package/lib/groups.js +84 -29
- package/lib/localConfig.js +301 -0
- package/lib/ota.js +5 -4
- package/lib/statescontroller.js +452 -185
- package/lib/utils.js +5 -3
- package/lib/zbDeviceAvailability.js +16 -30
- package/lib/zbDeviceConfigure.js +55 -28
- package/lib/zbDeviceEvent.js +2 -13
- package/lib/zigbeecontroller.js +335 -214
- package/main.js +181 -65
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -11,9 +11,8 @@
|
|
|
11
11
|
|
|
12
12
|
## ioBroker adapter for Zigbee devices via TI cc26x2r/cc2538/cc26x2px and deCONZ ConBee/RaspBee.
|
|
13
13
|
### cc2531/cc2530 are obsolet
|
|
14
|
-
|
|
15
|
-
With the Zigbee-coordinator based on Texas Instruments SoC, deCONZ ConBee/RaspBee modules, Silicon Labs EZSP v8 or ZIGate USB-TTL it creates its own zigbee-network, into which zigbee-devices are connected.
|
|
16
14
|
|
|
15
|
+
With the Zigbee-coordinator based on Texas Instruments SoC, deCONZ ConBee/RaspBee modules, Silicon Labs EZSP v8 or ZIGate USB-TTL it creates its own zigbee-network, into which zigbee-devices are connected.
|
|
17
16
|
|
|
18
17
|
|
|
19
18
|
By working directly with the coordinator, the driver allows you to manage devices without additional application / gateways / bridge from device manufacturers (Xiaomi / TRADFRI / Hue / Tuya). About the device Zigbee-network can be read [here (in English)](https://www.zigbee2mqtt.io/information/zigbee_network.html).
|
|
@@ -124,7 +123,7 @@ There are knowledge bases that can be useful for working with Zigbee-devices and
|
|
|
124
123
|
|
|
125
124
|
[in English](https://github.com/ioBroker/ioBroker.zigbee/blob/master/docs/en/readme.md)
|
|
126
125
|
|
|
127
|
-
or
|
|
126
|
+
or
|
|
128
127
|
|
|
129
128
|
[wiki](https://github.com/ioBroker/ioBroker.zigbee/wiki)
|
|
130
129
|
|
|
@@ -137,12 +136,43 @@ You can thank the authors by these links:
|
|
|
137
136
|
|
|
138
137
|
-----------------------------------------------------------------------------------------------------
|
|
139
138
|
## Changelog
|
|
140
|
-
### 2.0.
|
|
141
|
-
*
|
|
139
|
+
### 2.0.2 (2025-03-02)
|
|
140
|
+
* fix expose generation with expose function requiring a device. (Issue #1842)
|
|
141
|
+
* fix failure to configure for devices needing multiple configurations (Issue #2375)
|
|
142
|
+
* fix hold/release and press/release action handling (Issue #2387)
|
|
143
|
+
* fix lib/legacy requirement for external converters (Issue #2376)
|
|
144
|
+
* improved external converter handling
|
|
145
|
+
* fix OTA bug
|
|
146
|
+
* improved message handling for devices which report values outside their defined ranges
|
|
147
|
+
* preparation for ZHC 22.x (model definition loaded on demand
|
|
148
|
+
* fix legacy definition for devices
|
|
149
|
+
* added action state for remotes.
|
|
150
|
+
*
|
|
151
|
+
|
|
152
|
+
### 2.0.1 (2025-02-25)
|
|
153
|
+
* BREAKING CHANGES
|
|
154
|
+
*
|
|
155
|
+
* switch to converters 21 changes the exposes for a large numbern of devices (mostly remotes)
|
|
156
|
+
* new method for controlling color based on subchannels for rgb, hs and xy
|
|
157
|
+
* Exposes as default for ALL devices. Use of old definition as option only
|
|
158
|
+
* Requires Node 20.x or newer
|
|
159
|
+
*
|
|
160
|
+
* (asgothian) Fix Pairing
|
|
161
|
+
* (asgothian) change ping
|
|
162
|
+
* (asgothian) delay map generation until refresh is activated, map messages after generation
|
|
163
|
+
* (asgothian) remove bindings tab from zigbee tab
|
|
164
|
+
* (asgothian) reorder tabs in configuration
|
|
165
|
+
* (asgothian) remove binding tab from configuration
|
|
166
|
+
* (asgothian) remove map from configuration
|
|
167
|
+
* (asgothian) add debug to zigbee tab
|
|
168
|
+
* (asgothian) Herdsman 3.2.5, Converters 21.30.0
|
|
169
|
+
* (asgothian) Exposes as default, use of old device definitions as legacy optional
|
|
170
|
+
* (asgothian) User specific images (model based, device based)
|
|
171
|
+
* (asgothian) Improved group editing - remove members from group card
|
|
142
172
|
|
|
143
173
|
### 1.10.14 (2025-01-01)
|
|
144
174
|
* (arteck) Herdsman 2.1.9, Converters 20.58.0
|
|
145
|
-
* (asgothian) Fix: Aqara T1M (CL-L02D)
|
|
175
|
+
* (asgothian) Fix: Aqara T1M (CL-L02D)
|
|
146
176
|
* (arteck) deleteDeviceStates change to deleteObj
|
|
147
177
|
|
|
148
178
|
### 1.10.13 (2024-11-10)
|
|
@@ -153,10 +183,10 @@ You can thank the authors by these links:
|
|
|
153
183
|
|
|
154
184
|
### 1.10.11 (2024-11-02)
|
|
155
185
|
* BREAKING CHANGE
|
|
156
|
-
*
|
|
186
|
+
*
|
|
157
187
|
* bugs : ChannelScan is currently not available
|
|
158
|
-
*
|
|
159
|
-
*
|
|
188
|
+
*
|
|
189
|
+
*
|
|
160
190
|
* (lebrinkma) fix linter errors
|
|
161
191
|
* (asgothian) disable map display for deactivated devices
|
|
162
192
|
* (asgothian) new option on map: disable physics interaction
|
|
@@ -175,7 +205,7 @@ You can thank the authors by these links:
|
|
|
175
205
|
* (arteck) add new eslint version
|
|
176
206
|
|
|
177
207
|
### 1.10.7 (2024-09-05)
|
|
178
|
-
* (arteck) add flow control option
|
|
208
|
+
* (arteck) add flow control option
|
|
179
209
|
* (asgothian) add new NewHerdsman
|
|
180
210
|
* (arteck) add new ezsp coordinator Firmware (7.4.1.0)
|
|
181
211
|
|