matterbridge-example-dynamic-platform 1.1.6 → 1.1.7-dev.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/CHANGELOG.md CHANGED
@@ -4,12 +4,28 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-example-dynamic-platform and sponsoring it.
6
6
 
7
+ ## [1.1.7] - 2025-02-08
8
+
9
+ ### Added
10
+
11
+ - [platform]: Added generic momentary switch device.
12
+ - [platform]: Added generic latching switch device.
13
+ - [platform]: Added chaining provided by the new MatterbridgeEndpoint api.
14
+
15
+ ### Changed
16
+
17
+ - [package]: Updated package.
18
+ - [package]: Updated dependencies.
19
+
20
+ <a href="https://www.buymeacoffee.com/luligugithub">
21
+ <img src="./yellow-button.png" alt="Buy me a coffee" width="120">
22
+ </a>
23
+
7
24
  ## [1.1.6] - 2025-02-02
8
25
 
9
26
  ### Changed
10
27
 
11
28
  - [package]: Require matterbridge 2.1.0.
12
- - [package]: Updated package.
13
29
  - [package]: Updated dependencies.
14
30
 
15
31
  <a href="https://www.buymeacoffee.com/luligugithub">
package/README.md CHANGED
@@ -41,8 +41,11 @@ It exposes:
41
41
  - an airPurifier device with temperature and humidity sensor (supported by Apple Home)
42
42
  - a pumpDevice device
43
43
  - a waterValve device
44
+ - an airQuality device with all concentration measurements clusters
45
+ - a momentary switch
46
+ - a latching switch
44
47
 
45
- All these devices continuously change state and position. The plugin also shows how to use all the command handlers (you can control all the devices) and how to subscribe to attributes.
48
+ All these devices continuously change state and position. The plugin also shows how to use all the command handlers (you can control all the devices), how to subscribe to attributes and how to trigger events.
46
49
 
47
50
  If you like this project and find it useful, please consider giving it a star on GitHub at https://github.com/Luligu/matterbridge-example-dynamic-platform and sponsoring it.
48
51