matterbridge-zigbee2mqtt 2.4.7-dev.1 → 2.5.0-dev.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/CHANGELOG.md +79 -42
- package/README.md +18 -3
- package/dist/entity.js +115 -88
- package/dist/platform.js +35 -9
- package/matterbridge-zigbee2mqtt.schema.json +41 -14
- package/npm-shrinkwrap.json +93 -77
- package/package.json +2 -2
- package/tsconfig.jest.json +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,47 @@
|
|
|
1
1
|
# <img src="matterbridge.svg" alt="Matterbridge Logo" width="64px" height="64px"> Matterbridge zigbee2mqtt plugin changelog
|
|
2
2
|
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
3
5
|
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-zigbee2mqtt and sponsoring it.
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
8
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="120">
|
|
9
|
+
</a>
|
|
10
|
+
|
|
11
|
+
### Breaking Changes
|
|
12
|
+
|
|
13
|
+
New device types:
|
|
6
14
|
|
|
7
|
-
|
|
15
|
+
- extendedColorLight
|
|
16
|
+
- waterLeakDetector
|
|
17
|
+
- rainSensor
|
|
18
|
+
- smokeSensor
|
|
19
|
+
|
|
20
|
+
If your controller has issues detecting the new device type, blacklist these devices, restart, wait 5 minutes, remove the blacklist and restart again. This will create a new endpoint on the controller.
|
|
21
|
+
|
|
22
|
+
## [2.5.0] - 2025-05-21
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- [scenes]: Added scenes support for groups and devices. See the README.md for explanations.
|
|
27
|
+
- [waterLeak]: Added waterLeakDetector device type for zigbee property "water_leak". Default to false (i.e. no alarm) since is not possible to get the property.
|
|
28
|
+
- [rainSensor]: Added rainSensor device type for zigbee property "rain". Default to false (i.e. no alarm) since is not possible to get the property.
|
|
29
|
+
- [smokeSensor]: Added smokeSensor device type for zigbee property "smoke". Default to false (i.e. no alarm) since is not possible to get the property.
|
|
30
|
+
- [colorTemp]: Added conversion from color temperature to rgb for the devices that doesn't support color temperature.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- [package]: Updated package.
|
|
35
|
+
- [package]: Updated dependencies.
|
|
36
|
+
- [plugin]: Requires Matterbridge 3.0.3.
|
|
37
|
+
- [config]: As anticipated in the previous release, the parameter postfixHostname has been removed. Use postfix if needed.
|
|
38
|
+
- [colorRgb]: Changed the default device type from colorTemperatureLight to extendedColorLight to solve the SmartThings issue with colors.
|
|
39
|
+
|
|
40
|
+
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
41
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
42
|
+
</a>
|
|
43
|
+
|
|
44
|
+
## [2.4.7] - 2025-03-19
|
|
8
45
|
|
|
9
46
|
### Added
|
|
10
47
|
|
|
@@ -14,12 +51,12 @@ All notable changes to this project will be documented in this file.
|
|
|
14
51
|
|
|
15
52
|
- [package]: Updated package.
|
|
16
53
|
- [package]: Updated dependencies.
|
|
17
|
-
- [plugin]: Requires Matterbridge 2.2.
|
|
54
|
+
- [plugin]: Requires Matterbridge 2.2.5.
|
|
18
55
|
- [config]: Added parameter postfix (3 characters max) to be consistent with the other plugins. This parameter works with the Devices panel in the home page.
|
|
19
56
|
- [config]: The old postfixHostname will be removed in the next release. If you were using postfixHostname, please change it with postfix, the controllers will likely remove and recreate all the devices so make a backup of configurations (i.e. room assignements) and automations on the controller!
|
|
20
57
|
|
|
21
58
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
22
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
59
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
23
60
|
</a>
|
|
24
61
|
|
|
25
62
|
## [2.4.6] - 2025-02-20
|
|
@@ -34,7 +71,7 @@ All notable changes to this project will be documented in this file.
|
|
|
34
71
|
- [schema]: Fix wrong default in schema (thanks https://github.com/robvanoostenrijk).
|
|
35
72
|
|
|
36
73
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
37
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
74
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
38
75
|
</a>
|
|
39
76
|
|
|
40
77
|
## [2.4.5] - 2025-02-05
|
|
@@ -52,7 +89,7 @@ All notable changes to this project will be documented in this file.
|
|
|
52
89
|
- [thermostat]: Fix thermostat bug (thanks https://github.com/robvanoostenrijk).
|
|
53
90
|
|
|
54
91
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
55
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
92
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
56
93
|
</a>
|
|
57
94
|
|
|
58
95
|
## [2.4.4] - 2025-02-02
|
|
@@ -64,7 +101,7 @@ All notable changes to this project will be documented in this file.
|
|
|
64
101
|
- [package]: Updated dependencies.
|
|
65
102
|
|
|
66
103
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
67
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
104
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
68
105
|
</a>
|
|
69
106
|
|
|
70
107
|
## [2.4.3] - 2025-01-20
|
|
@@ -75,7 +112,7 @@ All notable changes to this project will be documented in this file.
|
|
|
75
112
|
- [package]: Updated dependencies.
|
|
76
113
|
|
|
77
114
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
78
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
115
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
79
116
|
</a>
|
|
80
117
|
|
|
81
118
|
## [2.4.2] - 2025-01-11
|
|
@@ -85,7 +122,7 @@ All notable changes to this project will be documented in this file.
|
|
|
85
122
|
- [endpoint]: Fixed blacklist of child endpoints.
|
|
86
123
|
|
|
87
124
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
88
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
125
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
89
126
|
</a>
|
|
90
127
|
|
|
91
128
|
## [2.4.1] - 2025-01-11
|
|
@@ -101,7 +138,7 @@ All notable changes to this project will be documented in this file.
|
|
|
101
138
|
- [package]: Updated dependencies.
|
|
102
139
|
|
|
103
140
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
104
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
141
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
105
142
|
</a>
|
|
106
143
|
|
|
107
144
|
## [2.4.0] - 2025-01-08
|
|
@@ -117,7 +154,7 @@ All notable changes to this project will be documented in this file.
|
|
|
117
154
|
- [package]: Updated dependencies.
|
|
118
155
|
|
|
119
156
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
120
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
157
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
121
158
|
</a>
|
|
122
159
|
|
|
123
160
|
## [2.3.2] - 2024-12-24
|
|
@@ -130,7 +167,7 @@ All notable changes to this project will be documented in this file.
|
|
|
130
167
|
- [platform]: Use platform endpoint number check.
|
|
131
168
|
|
|
132
169
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
133
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
170
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
134
171
|
</a>
|
|
135
172
|
|
|
136
173
|
## [2.3.1] - 2024-12-12
|
|
@@ -148,7 +185,7 @@ All notable changes to this project will be documented in this file.
|
|
|
148
185
|
### Fixed
|
|
149
186
|
|
|
150
187
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
151
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
188
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
152
189
|
</a>
|
|
153
190
|
|
|
154
191
|
## [2.3.0] - 2024-12-04
|
|
@@ -168,7 +205,7 @@ All notable changes to this project will be documented in this file.
|
|
|
168
205
|
### Fixed
|
|
169
206
|
|
|
170
207
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
171
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
208
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
172
209
|
</a>
|
|
173
210
|
|
|
174
211
|
## [2.2.2] - 2024-11-26
|
|
@@ -194,7 +231,7 @@ All notable changes to this project will be documented in this file.
|
|
|
194
231
|
- [thermostat]: Fixed the case when instead of current_cooling_setpoint the property is occupied_cooling_setpoint.
|
|
195
232
|
|
|
196
233
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
197
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
234
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
198
235
|
</a>
|
|
199
236
|
|
|
200
237
|
## [2.2.1] - 2024-10-11
|
|
@@ -206,7 +243,7 @@ All notable changes to this project will be documented in this file.
|
|
|
206
243
|
- [entity]: Fixed log.
|
|
207
244
|
|
|
208
245
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
209
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
246
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
210
247
|
</a>
|
|
211
248
|
|
|
212
249
|
## [2.2.0] - 2024-10-10
|
|
@@ -223,7 +260,7 @@ All notable changes to this project will be documented in this file.
|
|
|
223
260
|
- [package]: Updated dependencies.
|
|
224
261
|
|
|
225
262
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
226
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
263
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
227
264
|
</a>
|
|
228
265
|
|
|
229
266
|
## [2.1.19] - 2024-10-01
|
|
@@ -234,7 +271,7 @@ All notable changes to this project will be documented in this file.
|
|
|
234
271
|
- [package]: Updated dependencies.
|
|
235
272
|
|
|
236
273
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
237
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
274
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
238
275
|
</a>
|
|
239
276
|
|
|
240
277
|
## [2.1.17] - 2024-09-21
|
|
@@ -252,7 +289,7 @@ All notable changes to this project will be documented in this file.
|
|
|
252
289
|
- [plugin]: Removed the superset device types.
|
|
253
290
|
|
|
254
291
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
255
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
292
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
256
293
|
</a>
|
|
257
294
|
|
|
258
295
|
## [2.1.16] - 2024-09-04
|
|
@@ -263,7 +300,7 @@ All notable changes to this project will be documented in this file.
|
|
|
263
300
|
- [package]: Updated dependencies.
|
|
264
301
|
|
|
265
302
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
266
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
303
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
267
304
|
</a>
|
|
268
305
|
|
|
269
306
|
## [2.1.15] - 2024-09-03
|
|
@@ -274,7 +311,7 @@ All notable changes to this project will be documented in this file.
|
|
|
274
311
|
- [package]: Updated dependencies.
|
|
275
312
|
|
|
276
313
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
277
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
314
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
278
315
|
</a>
|
|
279
316
|
|
|
280
317
|
## [2.1.14] - 2024-08-29
|
|
@@ -289,7 +326,7 @@ All notable changes to this project will be documented in this file.
|
|
|
289
326
|
- [package]: Updated imports.
|
|
290
327
|
|
|
291
328
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
292
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
329
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
293
330
|
</a>
|
|
294
331
|
|
|
295
332
|
## [2.1.13] - 2024-08-22
|
|
@@ -303,7 +340,7 @@ All notable changes to this project will be documented in this file.
|
|
|
303
340
|
- [package]: Fixed MQTT protocol.
|
|
304
341
|
|
|
305
342
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
306
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
343
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
307
344
|
</a>
|
|
308
345
|
|
|
309
346
|
## [2.1.12] - 2024-08-21
|
|
@@ -315,7 +352,7 @@ All notable changes to this project will be documented in this file.
|
|
|
315
352
|
- [package]: Updated dependencies.
|
|
316
353
|
|
|
317
354
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
318
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
355
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
319
356
|
</a>
|
|
320
357
|
|
|
321
358
|
## [2.1.11] - 2024-08-20
|
|
@@ -330,7 +367,7 @@ All notable changes to this project will be documented in this file.
|
|
|
330
367
|
- [package]: Fixed dependencies.
|
|
331
368
|
|
|
332
369
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
333
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
370
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
334
371
|
</a>
|
|
335
372
|
|
|
336
373
|
## [2.1.10] - 2024-08-09
|
|
@@ -345,7 +382,7 @@ All notable changes to this project will be documented in this file.
|
|
|
345
382
|
- [z2m]: Fixed issue: 'Only supported EndpointInterface implementation is Endpoint'.
|
|
346
383
|
|
|
347
384
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
348
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
385
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
349
386
|
</a>
|
|
350
387
|
|
|
351
388
|
## [2.1.9] - 2024-07-28
|
|
@@ -357,7 +394,7 @@ All notable changes to this project will be documented in this file.
|
|
|
357
394
|
- [storage]: Update node-persist-manager to 1.0.8.
|
|
358
395
|
|
|
359
396
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
360
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
397
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
361
398
|
</a>
|
|
362
399
|
|
|
363
400
|
## [2.1.8] - 2024-07-23
|
|
@@ -367,7 +404,7 @@ All notable changes to this project will be documented in this file.
|
|
|
367
404
|
- [z2m]: Updated matterbridge imports.
|
|
368
405
|
|
|
369
406
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
370
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
407
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
371
408
|
</a>
|
|
372
409
|
|
|
373
410
|
## [2.1.7] - 2024-07-11
|
|
@@ -377,7 +414,7 @@ All notable changes to this project will be documented in this file.
|
|
|
377
414
|
- [z2m]: Fixed trigger when the endpoint is undefined.
|
|
378
415
|
|
|
379
416
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
380
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
417
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
381
418
|
</a>
|
|
382
419
|
|
|
383
420
|
## [2.1.6] - 2024-07-10
|
|
@@ -392,7 +429,7 @@ All notable changes to this project will be documented in this file.
|
|
|
392
429
|
- [z2m]: Fixed the detection of color_temp only lights.
|
|
393
430
|
|
|
394
431
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
395
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
432
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
396
433
|
</a>
|
|
397
434
|
|
|
398
435
|
## [2.1.5] - 2024-07-01
|
|
@@ -406,7 +443,7 @@ All notable changes to this project will be documented in this file.
|
|
|
406
443
|
- [zigbee]: Fixed WindowCovering.targetPositionLiftPercent100ths update (Thanks Nitay Ben-Zvi).
|
|
407
444
|
|
|
408
445
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
409
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
446
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
410
447
|
</a>
|
|
411
448
|
|
|
412
449
|
## [2.1.4] - 2024-06-30
|
|
@@ -417,7 +454,7 @@ All notable changes to this project will be documented in this file.
|
|
|
417
454
|
- [dependencies]: Update eslint to 9.6.0.
|
|
418
455
|
|
|
419
456
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
420
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
457
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
421
458
|
</a>
|
|
422
459
|
|
|
423
460
|
## [2.1.3] - 2024-06-23
|
|
@@ -436,7 +473,7 @@ All notable changes to this project will be documented in this file.
|
|
|
436
473
|
- [bridge/info]: Fixed the issue when include_device_information is set to true. (Thanks copystring).
|
|
437
474
|
|
|
438
475
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
439
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
476
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
440
477
|
</a>
|
|
441
478
|
|
|
442
479
|
## [2.1.2] - 2024-06-21
|
|
@@ -447,7 +484,7 @@ All notable changes to this project will be documented in this file.
|
|
|
447
484
|
- [start]: Refactor start sequence.
|
|
448
485
|
|
|
449
486
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
450
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
487
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
451
488
|
</a>
|
|
452
489
|
|
|
453
490
|
## [2.1.1] - 2024-06-20
|
|
@@ -458,7 +495,7 @@ All notable changes to this project will be documented in this file.
|
|
|
458
495
|
- [schema]: Added info log when the plugin starts to register devices and groups. Added empty bridge/config and bridge/definitions handlers.
|
|
459
496
|
|
|
460
497
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
461
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
498
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
462
499
|
</a>
|
|
463
500
|
|
|
464
501
|
## [2.1.0] - 2024-06-19
|
|
@@ -481,7 +518,7 @@ All notable changes to this project will be documented in this file.
|
|
|
481
518
|
- [availability]: Fixed the issue that caused the availability event sent before the start to be ignored.
|
|
482
519
|
|
|
483
520
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
484
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
521
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
485
522
|
</a>
|
|
486
523
|
|
|
487
524
|
## [2.0.17] - 2024-06-16
|
|
@@ -495,7 +532,7 @@ All notable changes to this project will be documented in this file.
|
|
|
495
532
|
- [dependencies]: Update dependencies
|
|
496
533
|
|
|
497
534
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
498
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
535
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
499
536
|
</a>
|
|
500
537
|
|
|
501
538
|
## [2.0.16] - 2024-06-06
|
|
@@ -506,7 +543,7 @@ All notable changes to this project will be documented in this file.
|
|
|
506
543
|
- [matterbridge]: Added bridgeOnline to the start checks.
|
|
507
544
|
|
|
508
545
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
509
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
546
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
510
547
|
</a>
|
|
511
548
|
|
|
512
549
|
## [2.0.15] - 2024-06-01
|
|
@@ -517,7 +554,7 @@ All notable changes to this project will be documented in this file.
|
|
|
517
554
|
- [matterbridge]: Adapted the code to the new start mode of Matterbridge.
|
|
518
555
|
|
|
519
556
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
520
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
557
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
521
558
|
</a>
|
|
522
559
|
|
|
523
560
|
## [2.0.14] - 2024-05-09
|
|
@@ -527,7 +564,7 @@ All notable changes to this project will be documented in this file.
|
|
|
527
564
|
- [mqtt]: Added Keekalive to MQTT.
|
|
528
565
|
|
|
529
566
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
530
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
567
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
531
568
|
</a>
|
|
532
569
|
|
|
533
570
|
## [2.0.13] - 2024-05-02
|
|
@@ -541,7 +578,7 @@ All notable changes to this project will be documented in this file.
|
|
|
541
578
|
- [payload]: Fixed the case when z2m sends empty action in the payload.
|
|
542
579
|
|
|
543
580
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
544
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
581
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
545
582
|
</a>
|
|
546
583
|
|
|
547
584
|
## [2.0.12] - 2024-04-30
|
|
@@ -552,7 +589,7 @@ All notable changes to this project will be documented in this file.
|
|
|
552
589
|
- [mqtt]: Added handles for group_add, group_remove, group_rename, group_add_member and group_remove_member
|
|
553
590
|
|
|
554
591
|
<a href="https://www.buymeacoffee.com/luligugithub">
|
|
555
|
-
<img src="bmc-button.svg" alt="Buy me a coffee" width="
|
|
592
|
+
<img src="bmc-button.svg" alt="Buy me a coffee" width="80">
|
|
556
593
|
</a>
|
|
557
594
|
|
|
558
595
|
## [2.0.11] - 2024-04-26
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Matterbridge zigbee2mqtt is a matterbridge production-level plugin that expose a
|
|
|
17
17
|
|
|
18
18
|
No hub or dedicated hardware needed.
|
|
19
19
|
|
|
20
|
-
Interested in super fast and autonomous automations for zigbee2mqtt
|
|
20
|
+
Interested in super fast and autonomous **[automations for zigbee2mqtt](https://github.com/Luligu/zigbee2mqtt-automations)**? Try this: https://github.com/Luligu/zigbee2mqtt-automations.
|
|
21
21
|
|
|
22
22
|
If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-zigbee2mqtt and sponsoring it.
|
|
23
23
|
|
|
@@ -150,8 +150,9 @@ These are the default vules:
|
|
|
150
150
|
"outletList": [],
|
|
151
151
|
"featureBlackList": [],
|
|
152
152
|
"deviceFeatureBlackList": {},
|
|
153
|
-
"
|
|
154
|
-
"
|
|
153
|
+
"scenesType": "outlet",
|
|
154
|
+
"scenesPrefix: true,
|
|
155
|
+
"postfix": ""
|
|
155
156
|
}
|
|
156
157
|
```
|
|
157
158
|
|
|
@@ -250,6 +251,20 @@ If one of your devices is not supported out of the box, open an issue and we wil
|
|
|
250
251
|
|
|
251
252
|

|
|
252
253
|
|
|
254
|
+
## Scenes in groups and devices
|
|
255
|
+
|
|
256
|
+
With release 2.5.0 has been added support for scenes in groups and devices.
|
|
257
|
+
|
|
258
|
+
In the config select what device type you want to use to expose the command that runs the scene: 'light' | 'outlet' | 'switch' | 'mounted_switch'.
|
|
259
|
+
|
|
260
|
+
Switch is not supported by Alexa. Mounted Switch is not supported by Apple Home.
|
|
261
|
+
|
|
262
|
+
The virtual device takes the name of the group or device it belongs to, with added the name of scene. If scenesPrefix is disabled, it takes only the name of the scene. Consider that in Matter the node name is 32 characters long.
|
|
263
|
+
|
|
264
|
+
The state of the virtual device is always reverted to off in a few seconds.
|
|
265
|
+
|
|
266
|
+
It is possibile to disable the feature globally with featureBlackList and on a per device/group base with deviceFeatureBlackList.
|
|
267
|
+
|
|
253
268
|
# Known issues
|
|
254
269
|
|
|
255
270
|
For general controller issues check the Matterbridge Known issues section
|