iobroker.zigbee 2.0.5 → 3.0.1
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 +22 -3
- package/admin/admin.js +420 -115
- package/admin/index_m.html +285 -229
- package/admin/tab_m.html +108 -91
- package/docs/de/img/Bild30.png +0 -0
- package/docs/de/img/Bild38.png +0 -0
- package/docs/de/img/Info.png +0 -0
- package/docs/de/img/Zigbee_config_de.jpg +0 -0
- package/docs/de/img/battery.png +0 -0
- package/docs/de/img/debug.png +0 -0
- package/docs/de/img/delete.png +0 -0
- package/docs/de/img/disconnected.png +0 -0
- package/docs/de/img/edit_grp.png +0 -0
- package/docs/de/img/edit_image.png +0 -0
- package/docs/de/img/grp_nok.png +0 -0
- package/docs/de/img/grp_ok.png +0 -0
- package/docs/de/img/on_off.png +0 -0
- package/docs/de/img/reconfigure.png +0 -0
- package/docs/de/readme.md +52 -43
- package/docs/en/img/Zigbee_config_en.png +0 -0
- package/docs/en/img/Zigbee_pairing_en.png +0 -0
- package/docs/en/readme.md +66 -66
- package/io-package.json +32 -31
- package/lib/DeviceDebug.js +2 -1
- package/lib/commands.js +203 -40
- package/lib/devices.js +2 -2
- package/lib/exposes.js +8 -30
- package/lib/groups.js +1 -1
- package/lib/localConfig.js +33 -10
- package/lib/networkmap.js +2 -1
- package/lib/seriallist.js +9 -2
- package/lib/statescontroller.js +185 -91
- package/lib/utils.js +41 -11
- package/lib/zbDeviceConfigure.js +10 -3
- package/lib/zigbeecontroller.js +121 -94
- package/main.js +135 -73
- package/package.json +8 -8
- package/docs/en/img/Bild23.png +0 -0
- package/docs/en/img/Bild25.png +0 -0
- package/docs/en/img/Bild26.png +0 -0
- package/docs/en/img/Bild4.png +0 -0
- package/docs/en/img/Bild9.png +0 -0
package/README.md
CHANGED
|
@@ -68,13 +68,18 @@ At first start, it is vital to set up the adapter settings. These include:
|
|
|
68
68
|
- the network parameters PanID (a number between 0 and 65565), extended PanID (a 16 digit HEX number) and the zigbee Channel **important: Do not run the adapter without changing the values for PanID (6754) and Extended PanID (DDDDDDDDDDDDDDDD) to unique values for your Zigbee Installation.**
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-

|
|
72
|
+
|
|
73
|
+
The *Test Port* and *Star/Stop* buttons are provided to test the settings.
|
|
74
|
+
|
|
75
|
+
**Once the settings are verified the adapter can be prepared for automatic start by setting the CheckBox *start the zigbee network automatically* and saving the parameters.**
|
|
76
|
+
|
|
72
77
|
Please refer to the [in depth documentation](docs/en/readme.md) ([german version](docs/de/readme.md), [russian version](docs/ru/readme.md)) for a detailed explanation on how to configure the adapter.
|
|
73
78
|
|
|
74
79
|
Once the adapter is up and running, the desired devices need to be integrated into the network. This requires for both the adapter and the device to be in pairing mode. Most new devices will be in pairing-mode when they are powered up for the first time, but some will require a special procedure for this. Please refer to the device manual for information on this.
|
|
75
80
|
|
|
76
81
|
The adapter is placed in pairing mode by pressing the pairing button:
|
|
77
|
-

|
|
78
83
|
|
|
79
84
|
A dialog showing a pairing countdown appears. When a new device is discovered, interviewed and paired with the network, messages will be shown in this dialog, and the device will show up in the grid of active devices. Any known device should show up with an image and the correct device name, as well as a number of changable settings. Any unknown device will show up with a device name and a ? as icon, while devices which failed the pairing will show up as 'unknown' with the same ? icon. These should be removed from the network to be paired again. Please refer to the documentation linked above for more details.
|
|
80
85
|
|
|
@@ -152,6 +157,21 @@ You can thank the authors by these links:
|
|
|
152
157
|
|
|
153
158
|
-----------------------------------------------------------------------------------------------------
|
|
154
159
|
## Changelog
|
|
160
|
+
### 3.0.1 (2025-04-25)
|
|
161
|
+
* (AlexHaxe) Fix for Ikea SOMRIG configuration raising 'definition.endpoint is not a function' error.
|
|
162
|
+
* (asgothian) Access to 'zigbee2mqtt options as settings in zigbee adapter (ALPHA Stage !)
|
|
163
|
+
* (asgothian) Fix for 'error: zigbee.0 (1118300) zigbee.0 already running' at adapter start (Alpha Stage)
|
|
164
|
+
* (asgothian) Updated hardware configuration panel - exchanged text buttons for buttons with icons.
|
|
165
|
+
* (asgothian) Limited states on device tiles to states which are read only or which can be modified sensibly via the device tile.
|
|
166
|
+
*
|
|
167
|
+
|
|
168
|
+
### 3.0.0 (2025-04-08)
|
|
169
|
+
* (asgothian) Breaking change: Start of zigbee subsystem requires checking the 'start the Zigbee network automatically' checkbox. !!!
|
|
170
|
+
* (asgothian) Hardware configuration panel
|
|
171
|
+
* (asgothian) Update for external converter - detect /dist/ subfolder
|
|
172
|
+
* (asgothian) Update device image: use of icons defined in external converter (beta)
|
|
173
|
+
*
|
|
174
|
+
|
|
155
175
|
### 2.0.5 (2025-03-25)
|
|
156
176
|
* (asgothian) ZHC 23.6.0
|
|
157
177
|
* (asgothian) ZH 3.3.x
|
|
@@ -177,7 +197,6 @@ You can thank the authors by these links:
|
|
|
177
197
|
* (asgothian) fix Adapter-Checker notes
|
|
178
198
|
* (asgothian) improve base64 image detection
|
|
179
199
|
* (asgothian) removed unused adaptert objects (info.groups, excludes) from adapter config
|
|
180
|
-
*
|
|
181
200
|
|
|
182
201
|
### 2.0.2 (2025-03-02)
|
|
183
202
|
* (asgothian) expose generation with expose function requiring a device. (Issue #1842)
|