matterbridge 3.3.3 → 3.3.4-dev-20251020-4d2dd49

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.
Files changed (296) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/broadcastServer.js +1 -86
  3. package/dist/broadcastServerTypes.js +0 -24
  4. package/dist/cli.js +110 -444
  5. package/dist/cliEmitter.js +0 -37
  6. package/dist/cliHistory.js +15 -95
  7. package/dist/clusters/export.js +0 -2
  8. package/dist/defaultConfigSchema.js +0 -24
  9. package/dist/deviceManager.js +1 -124
  10. package/dist/devices/airConditioner.js +0 -57
  11. package/dist/devices/batteryStorage.js +1 -48
  12. package/dist/devices/cooktop.js +0 -55
  13. package/dist/devices/dishwasher.js +0 -57
  14. package/dist/devices/evse.js +10 -74
  15. package/dist/devices/export.js +0 -5
  16. package/dist/devices/extractorHood.js +0 -42
  17. package/dist/devices/heatPump.js +2 -50
  18. package/dist/devices/laundryDryer.js +3 -62
  19. package/dist/devices/laundryWasher.js +4 -70
  20. package/dist/devices/microwaveOven.js +5 -88
  21. package/dist/devices/oven.js +0 -85
  22. package/dist/devices/refrigerator.js +0 -102
  23. package/dist/devices/roboticVacuumCleaner.js +9 -100
  24. package/dist/devices/solarPower.js +0 -38
  25. package/dist/devices/speaker.js +0 -84
  26. package/dist/devices/temperatureControl.js +3 -25
  27. package/dist/devices/waterHeater.js +2 -82
  28. package/dist/dgram/coap.js +13 -126
  29. package/dist/dgram/dgram.js +2 -114
  30. package/dist/dgram/mb_coap.js +3 -41
  31. package/dist/dgram/mb_mdns.js +15 -80
  32. package/dist/dgram/mdns.js +137 -299
  33. package/dist/dgram/multicast.js +1 -62
  34. package/dist/dgram/unicast.js +0 -54
  35. package/dist/frontend.js +34 -413
  36. package/dist/frontendTypes.js +0 -45
  37. package/dist/helpers.js +0 -53
  38. package/dist/index.js +0 -25
  39. package/dist/logger/export.js +0 -1
  40. package/dist/matter/behaviors.js +0 -2
  41. package/dist/matter/clusters.js +0 -2
  42. package/dist/matter/devices.js +0 -2
  43. package/dist/matter/endpoints.js +0 -2
  44. package/dist/matter/export.js +0 -3
  45. package/dist/matter/types.js +0 -3
  46. package/dist/matterbridge.js +51 -873
  47. package/dist/matterbridgeAccessoryPlatform.js +0 -36
  48. package/dist/matterbridgeBehaviors.js +5 -71
  49. package/dist/matterbridgeDeviceTypes.js +17 -630
  50. package/dist/matterbridgeDynamicPlatform.js +0 -36
  51. package/dist/matterbridgeEndpoint.js +58 -1412
  52. package/dist/matterbridgeEndpointHelpers.js +10 -368
  53. package/dist/matterbridgePlatform.js +1 -341
  54. package/dist/matterbridgeTypes.js +0 -26
  55. package/dist/pluginManager.js +3 -325
  56. package/dist/shelly.js +7 -168
  57. package/dist/storage/export.js +0 -1
  58. package/dist/update.js +0 -69
  59. package/dist/utils/colorUtils.js +2 -97
  60. package/dist/utils/commandLine.js +6 -55
  61. package/dist/utils/copyDirectory.js +1 -38
  62. package/dist/utils/createDirectory.js +0 -33
  63. package/dist/utils/createZip.js +2 -47
  64. package/dist/utils/deepCopy.js +0 -39
  65. package/dist/utils/deepEqual.js +1 -72
  66. package/dist/utils/error.js +0 -41
  67. package/dist/utils/export.js +0 -1
  68. package/dist/utils/hex.js +0 -124
  69. package/dist/utils/inspector.js +200 -0
  70. package/dist/utils/isvalid.js +0 -101
  71. package/dist/utils/jestHelpers.js +3 -153
  72. package/dist/utils/network.js +5 -108
  73. package/dist/utils/spawn.js +0 -71
  74. package/dist/utils/tracker.js +229 -0
  75. package/dist/utils/wait.js +8 -60
  76. package/frontend/build/assets/index.js +4 -4
  77. package/frontend/build/assets/vendor_mdi.js +1 -1
  78. package/frontend/package.json +1 -1
  79. package/npm-shrinkwrap.json +44 -44
  80. package/package.json +2 -3
  81. package/dist/broadcastServer.d.ts +0 -105
  82. package/dist/broadcastServer.d.ts.map +0 -1
  83. package/dist/broadcastServer.js.map +0 -1
  84. package/dist/broadcastServerTypes.d.ts +0 -719
  85. package/dist/broadcastServerTypes.d.ts.map +0 -1
  86. package/dist/broadcastServerTypes.js.map +0 -1
  87. package/dist/cli.d.ts +0 -26
  88. package/dist/cli.d.ts.map +0 -1
  89. package/dist/cli.js.map +0 -1
  90. package/dist/cliEmitter.d.ts +0 -50
  91. package/dist/cliEmitter.d.ts.map +0 -1
  92. package/dist/cliEmitter.js.map +0 -1
  93. package/dist/cliHistory.d.ts +0 -74
  94. package/dist/cliHistory.d.ts.map +0 -1
  95. package/dist/cliHistory.js.map +0 -1
  96. package/dist/clusters/export.d.ts +0 -2
  97. package/dist/clusters/export.d.ts.map +0 -1
  98. package/dist/clusters/export.js.map +0 -1
  99. package/dist/defaultConfigSchema.d.ts +0 -28
  100. package/dist/defaultConfigSchema.d.ts.map +0 -1
  101. package/dist/defaultConfigSchema.js.map +0 -1
  102. package/dist/deviceManager.d.ts +0 -117
  103. package/dist/deviceManager.d.ts.map +0 -1
  104. package/dist/deviceManager.js.map +0 -1
  105. package/dist/devices/airConditioner.d.ts +0 -98
  106. package/dist/devices/airConditioner.d.ts.map +0 -1
  107. package/dist/devices/airConditioner.js.map +0 -1
  108. package/dist/devices/batteryStorage.d.ts +0 -48
  109. package/dist/devices/batteryStorage.d.ts.map +0 -1
  110. package/dist/devices/batteryStorage.js.map +0 -1
  111. package/dist/devices/cooktop.d.ts +0 -60
  112. package/dist/devices/cooktop.d.ts.map +0 -1
  113. package/dist/devices/cooktop.js.map +0 -1
  114. package/dist/devices/dishwasher.d.ts +0 -71
  115. package/dist/devices/dishwasher.d.ts.map +0 -1
  116. package/dist/devices/dishwasher.js.map +0 -1
  117. package/dist/devices/evse.d.ts +0 -75
  118. package/dist/devices/evse.d.ts.map +0 -1
  119. package/dist/devices/evse.js.map +0 -1
  120. package/dist/devices/export.d.ts +0 -17
  121. package/dist/devices/export.d.ts.map +0 -1
  122. package/dist/devices/export.js.map +0 -1
  123. package/dist/devices/extractorHood.d.ts +0 -46
  124. package/dist/devices/extractorHood.d.ts.map +0 -1
  125. package/dist/devices/extractorHood.js.map +0 -1
  126. package/dist/devices/heatPump.d.ts +0 -47
  127. package/dist/devices/heatPump.d.ts.map +0 -1
  128. package/dist/devices/heatPump.js.map +0 -1
  129. package/dist/devices/laundryDryer.d.ts +0 -67
  130. package/dist/devices/laundryDryer.d.ts.map +0 -1
  131. package/dist/devices/laundryDryer.js.map +0 -1
  132. package/dist/devices/laundryWasher.d.ts +0 -81
  133. package/dist/devices/laundryWasher.d.ts.map +0 -1
  134. package/dist/devices/laundryWasher.js.map +0 -1
  135. package/dist/devices/microwaveOven.d.ts +0 -168
  136. package/dist/devices/microwaveOven.d.ts.map +0 -1
  137. package/dist/devices/microwaveOven.js.map +0 -1
  138. package/dist/devices/oven.d.ts +0 -105
  139. package/dist/devices/oven.d.ts.map +0 -1
  140. package/dist/devices/oven.js.map +0 -1
  141. package/dist/devices/refrigerator.d.ts +0 -118
  142. package/dist/devices/refrigerator.d.ts.map +0 -1
  143. package/dist/devices/refrigerator.js.map +0 -1
  144. package/dist/devices/roboticVacuumCleaner.d.ts +0 -112
  145. package/dist/devices/roboticVacuumCleaner.d.ts.map +0 -1
  146. package/dist/devices/roboticVacuumCleaner.js.map +0 -1
  147. package/dist/devices/solarPower.d.ts +0 -40
  148. package/dist/devices/solarPower.d.ts.map +0 -1
  149. package/dist/devices/solarPower.js.map +0 -1
  150. package/dist/devices/speaker.d.ts +0 -87
  151. package/dist/devices/speaker.d.ts.map +0 -1
  152. package/dist/devices/speaker.js.map +0 -1
  153. package/dist/devices/temperatureControl.d.ts +0 -166
  154. package/dist/devices/temperatureControl.d.ts.map +0 -1
  155. package/dist/devices/temperatureControl.js.map +0 -1
  156. package/dist/devices/waterHeater.d.ts +0 -111
  157. package/dist/devices/waterHeater.d.ts.map +0 -1
  158. package/dist/devices/waterHeater.js.map +0 -1
  159. package/dist/dgram/coap.d.ts +0 -205
  160. package/dist/dgram/coap.d.ts.map +0 -1
  161. package/dist/dgram/coap.js.map +0 -1
  162. package/dist/dgram/dgram.d.ts +0 -141
  163. package/dist/dgram/dgram.d.ts.map +0 -1
  164. package/dist/dgram/dgram.js.map +0 -1
  165. package/dist/dgram/mb_coap.d.ts +0 -24
  166. package/dist/dgram/mb_coap.d.ts.map +0 -1
  167. package/dist/dgram/mb_coap.js.map +0 -1
  168. package/dist/dgram/mb_mdns.d.ts +0 -24
  169. package/dist/dgram/mb_mdns.d.ts.map +0 -1
  170. package/dist/dgram/mb_mdns.js.map +0 -1
  171. package/dist/dgram/mdns.d.ts +0 -290
  172. package/dist/dgram/mdns.d.ts.map +0 -1
  173. package/dist/dgram/mdns.js.map +0 -1
  174. package/dist/dgram/multicast.d.ts +0 -67
  175. package/dist/dgram/multicast.d.ts.map +0 -1
  176. package/dist/dgram/multicast.js.map +0 -1
  177. package/dist/dgram/unicast.d.ts +0 -56
  178. package/dist/dgram/unicast.d.ts.map +0 -1
  179. package/dist/dgram/unicast.js.map +0 -1
  180. package/dist/frontend.d.ts +0 -235
  181. package/dist/frontend.d.ts.map +0 -1
  182. package/dist/frontend.js.map +0 -1
  183. package/dist/frontendTypes.d.ts +0 -529
  184. package/dist/frontendTypes.d.ts.map +0 -1
  185. package/dist/frontendTypes.js.map +0 -1
  186. package/dist/helpers.d.ts +0 -48
  187. package/dist/helpers.d.ts.map +0 -1
  188. package/dist/helpers.js.map +0 -1
  189. package/dist/index.d.ts +0 -33
  190. package/dist/index.d.ts.map +0 -1
  191. package/dist/index.js.map +0 -1
  192. package/dist/logger/export.d.ts +0 -2
  193. package/dist/logger/export.d.ts.map +0 -1
  194. package/dist/logger/export.js.map +0 -1
  195. package/dist/matter/behaviors.d.ts +0 -2
  196. package/dist/matter/behaviors.d.ts.map +0 -1
  197. package/dist/matter/behaviors.js.map +0 -1
  198. package/dist/matter/clusters.d.ts +0 -2
  199. package/dist/matter/clusters.d.ts.map +0 -1
  200. package/dist/matter/clusters.js.map +0 -1
  201. package/dist/matter/devices.d.ts +0 -2
  202. package/dist/matter/devices.d.ts.map +0 -1
  203. package/dist/matter/devices.js.map +0 -1
  204. package/dist/matter/endpoints.d.ts +0 -2
  205. package/dist/matter/endpoints.d.ts.map +0 -1
  206. package/dist/matter/endpoints.js.map +0 -1
  207. package/dist/matter/export.d.ts +0 -5
  208. package/dist/matter/export.d.ts.map +0 -1
  209. package/dist/matter/export.js.map +0 -1
  210. package/dist/matter/types.d.ts +0 -3
  211. package/dist/matter/types.d.ts.map +0 -1
  212. package/dist/matter/types.js.map +0 -1
  213. package/dist/matterbridge.d.ts +0 -469
  214. package/dist/matterbridge.d.ts.map +0 -1
  215. package/dist/matterbridge.js.map +0 -1
  216. package/dist/matterbridgeAccessoryPlatform.d.ts +0 -42
  217. package/dist/matterbridgeAccessoryPlatform.d.ts.map +0 -1
  218. package/dist/matterbridgeAccessoryPlatform.js.map +0 -1
  219. package/dist/matterbridgeBehaviors.d.ts +0 -2399
  220. package/dist/matterbridgeBehaviors.d.ts.map +0 -1
  221. package/dist/matterbridgeBehaviors.js.map +0 -1
  222. package/dist/matterbridgeDeviceTypes.d.ts +0 -761
  223. package/dist/matterbridgeDeviceTypes.d.ts.map +0 -1
  224. package/dist/matterbridgeDeviceTypes.js.map +0 -1
  225. package/dist/matterbridgeDynamicPlatform.d.ts +0 -42
  226. package/dist/matterbridgeDynamicPlatform.d.ts.map +0 -1
  227. package/dist/matterbridgeDynamicPlatform.js.map +0 -1
  228. package/dist/matterbridgeEndpoint.d.ts +0 -1545
  229. package/dist/matterbridgeEndpoint.d.ts.map +0 -1
  230. package/dist/matterbridgeEndpoint.js.map +0 -1
  231. package/dist/matterbridgeEndpointHelpers.d.ts +0 -560
  232. package/dist/matterbridgeEndpointHelpers.d.ts.map +0 -1
  233. package/dist/matterbridgeEndpointHelpers.js.map +0 -1
  234. package/dist/matterbridgePlatform.d.ts +0 -402
  235. package/dist/matterbridgePlatform.d.ts.map +0 -1
  236. package/dist/matterbridgePlatform.js.map +0 -1
  237. package/dist/matterbridgeTypes.d.ts +0 -209
  238. package/dist/matterbridgeTypes.d.ts.map +0 -1
  239. package/dist/matterbridgeTypes.js.map +0 -1
  240. package/dist/pluginManager.d.ts +0 -353
  241. package/dist/pluginManager.d.ts.map +0 -1
  242. package/dist/pluginManager.js.map +0 -1
  243. package/dist/shelly.d.ts +0 -174
  244. package/dist/shelly.d.ts.map +0 -1
  245. package/dist/shelly.js.map +0 -1
  246. package/dist/storage/export.d.ts +0 -2
  247. package/dist/storage/export.d.ts.map +0 -1
  248. package/dist/storage/export.js.map +0 -1
  249. package/dist/update.d.ts +0 -75
  250. package/dist/update.d.ts.map +0 -1
  251. package/dist/update.js.map +0 -1
  252. package/dist/utils/colorUtils.d.ts +0 -99
  253. package/dist/utils/colorUtils.d.ts.map +0 -1
  254. package/dist/utils/colorUtils.js.map +0 -1
  255. package/dist/utils/commandLine.d.ts +0 -59
  256. package/dist/utils/commandLine.d.ts.map +0 -1
  257. package/dist/utils/commandLine.js.map +0 -1
  258. package/dist/utils/copyDirectory.d.ts +0 -33
  259. package/dist/utils/copyDirectory.d.ts.map +0 -1
  260. package/dist/utils/copyDirectory.js.map +0 -1
  261. package/dist/utils/createDirectory.d.ts +0 -34
  262. package/dist/utils/createDirectory.d.ts.map +0 -1
  263. package/dist/utils/createDirectory.js.map +0 -1
  264. package/dist/utils/createZip.d.ts +0 -39
  265. package/dist/utils/createZip.d.ts.map +0 -1
  266. package/dist/utils/createZip.js.map +0 -1
  267. package/dist/utils/deepCopy.d.ts +0 -32
  268. package/dist/utils/deepCopy.d.ts.map +0 -1
  269. package/dist/utils/deepCopy.js.map +0 -1
  270. package/dist/utils/deepEqual.d.ts +0 -54
  271. package/dist/utils/deepEqual.d.ts.map +0 -1
  272. package/dist/utils/deepEqual.js.map +0 -1
  273. package/dist/utils/error.d.ts +0 -44
  274. package/dist/utils/error.d.ts.map +0 -1
  275. package/dist/utils/error.js.map +0 -1
  276. package/dist/utils/export.d.ts +0 -13
  277. package/dist/utils/export.d.ts.map +0 -1
  278. package/dist/utils/export.js.map +0 -1
  279. package/dist/utils/hex.d.ts +0 -89
  280. package/dist/utils/hex.d.ts.map +0 -1
  281. package/dist/utils/hex.js.map +0 -1
  282. package/dist/utils/isvalid.d.ts +0 -103
  283. package/dist/utils/isvalid.d.ts.map +0 -1
  284. package/dist/utils/isvalid.js.map +0 -1
  285. package/dist/utils/jestHelpers.d.ts +0 -137
  286. package/dist/utils/jestHelpers.d.ts.map +0 -1
  287. package/dist/utils/jestHelpers.js.map +0 -1
  288. package/dist/utils/network.d.ts +0 -115
  289. package/dist/utils/network.d.ts.map +0 -1
  290. package/dist/utils/network.js.map +0 -1
  291. package/dist/utils/spawn.d.ts +0 -35
  292. package/dist/utils/spawn.d.ts.map +0 -1
  293. package/dist/utils/spawn.js.map +0 -1
  294. package/dist/utils/wait.d.ts +0 -54
  295. package/dist/utils/wait.d.ts.map +0 -1
  296. package/dist/utils/wait.js.map +0 -1
@@ -1,761 +0,0 @@
1
- /**
2
- * This file contains the class MatterbridgeDevice.
3
- *
4
- * @file matterbridgeDeviceTypes.ts
5
- * @author Luca Liguori
6
- * @created 2024-11-08
7
- * @version 1.0.0
8
- * @license Apache-2.0
9
- *
10
- * Copyright 2024, 2025, 2026 Luca Liguori.
11
- *
12
- * Licensed under the Apache License, Version 2.0 (the "License");
13
- * you may not use this file except in compliance with the License.
14
- * You may obtain a copy of the License at
15
- *
16
- * http://www.apache.org/licenses/LICENSE-2.0
17
- *
18
- * Unless required by applicable law or agreed to in writing, software
19
- * distributed under the License is distributed on an "AS IS" BASIS,
20
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21
- * See the License for the specific language governing permissions and
22
- * limitations under the License.
23
- */
24
- import { ClusterId, DeviceTypeId, EndpointNumber } from '@matter/main';
25
- import { Semtag } from '@matter/main/types';
26
- export declare enum DeviceClasses {
27
- /** Node device type. */
28
- Node = "Node",
29
- /**
30
- * Application device type.
31
- * Application devices types are typically the most datatype endpoints on a node and in the network.
32
- */
33
- App = "App",
34
- /**
35
- * Utility device type.
36
- * A Utility device type supports configuration and settings.
37
- */
38
- Utility = "Utility",
39
- /**
40
- * Simple device type.
41
- * A Simple device type supports local control that is persistent, independent, and unsupervised.
42
- */
43
- Simple = "Simple",
44
- /**
45
- * Dynamic device type.
46
- * A Dynamic device type supports intelligent and supervisory services, such as commissioning,
47
- * monitoring, trend analysis, scheduling and central management. A dynamic device type is an
48
- * application device type.
49
- */
50
- Dynamic = "Dynamic",
51
- /** There exists a client application cluster on the endpoint. */
52
- Client = "Client",
53
- /** There exists a server application cluster on the endpoint. */
54
- Server = "Server",
55
- /** The device type is composed of 2 or more device types. */
56
- Composed = "Composed",
57
- /** The endpoint and at least one of its sibling endpoints have an overlap in application device type(s). */
58
- Duplicate = "Duplicate",
59
- /**
60
- * The endpoint represents a Bridged Device, for which information about the state of
61
- * its power source is available to the Bridge
62
- */
63
- BridgedPowerSourceInfo = "BridgedPowerSourceInfo"
64
- }
65
- export interface DeviceTypeDefinition {
66
- name: string;
67
- code: DeviceTypeId;
68
- deviceClass: DeviceClasses;
69
- revision: number;
70
- requiredServerClusters: ClusterId[];
71
- optionalServerClusters: ClusterId[];
72
- requiredClientClusters: ClusterId[];
73
- optionalClientClusters: ClusterId[];
74
- }
75
- export declare const DeviceTypeDefinition: ({ name, code, deviceClass, revision, requiredServerClusters, optionalServerClusters, requiredClientClusters, optionalClientClusters, }: {
76
- name: string;
77
- code: number;
78
- deviceClass: DeviceClasses;
79
- revision: number;
80
- requiredServerClusters?: ClusterId[];
81
- optionalServerClusters?: ClusterId[];
82
- requiredClientClusters?: ClusterId[];
83
- optionalClientClusters?: ClusterId[];
84
- }) => DeviceTypeDefinition;
85
- /**
86
- * MatterbridgeEndpointOptions interface is used to define the options for a Matterbridge endpoint.
87
- *
88
- * @remarks
89
- * - tagList?: Semtag[]. It is used to disambiguate the sibling child endpoints (9.2.3. Disambiguation rule).
90
- * - mfgCode: VendorId | null,
91
- * - namespaceId: number,
92
- * - tag: number,
93
- * - label: string | undefined | null
94
- * - mode?: 'server' | 'matter'. It is used to activate a special mode for the endpoint.
95
- * - id?: string. It is the unique storage key for the endpoint.
96
- * - number?: EndpointNumber. It is the endpoint number for the endpoint.
97
- */
98
- export interface MatterbridgeEndpointOptions extends EndpointOptions {
99
- /**
100
- * The semantic tags array for the endpoint.
101
- * The tagList is used to disambiguate the sibling child endpoints (9.2.3. Disambiguation rule).
102
- * The tagList is used to identify the endpoint and to provide additional information about the endpoint.
103
- *
104
- * @remarks
105
- * - mfgCode: VendorId | null,
106
- * - namespaceId: number,
107
- * - tag: number,
108
- * - label: string | undefined | null
109
- */
110
- tagList?: Semtag[];
111
- /**
112
- * Activates a special mode for this endpoint.
113
- * - 'server': it creates the device server node and add the device as Matter device that needs to be paired individually.
114
- * In this case the Matterbridge bridge mode (bridge or childbridge) is not relevant. The device is independent.
115
- *
116
- * - 'matter': it adds the device directly to the Matterbridge server node as Matter device alongside the aggregator. In this case the implementation must respect
117
- * the 9.2.3. Disambiguation rule (i.e. use taglist if needed cause the device doesn't have nodeLabel).
118
- * Furthermore the device will be a part of the bridge (i.e. will have the same name and will be in the same room).
119
- * See 9.12.2.2. Native Matter functionality in Bridge.
120
- *
121
- * @remarks
122
- * Always use createDefaultBasicInformationClusterServer() to create the BasicInformation cluster server when using mode 'server' or 'matter'.
123
- */
124
- mode?: 'server' | 'matter';
125
- /**
126
- * The unique storage key for the endpoint.
127
- * If not provided, a default key will be used.
128
- */
129
- id?: string;
130
- /**
131
- * The endpoint number for the endpoint.
132
- * If not provided, the endpoint will be created with the next available endpoint number.
133
- * If provided, the endpoint will be created with the specified endpoint number.
134
- */
135
- number?: EndpointNumber;
136
- }
137
- /**
138
- * EndpointOptions interface is used to define the options for an endpoint.
139
- *
140
- * @deprecated Use `MatterbridgeEndpointOptions` instead.
141
- */
142
- export interface EndpointOptions {
143
- /**
144
- * Old API compatibility replaced by number.
145
- *
146
- * @deprecated Use `number` instead.
147
- */
148
- endpointId?: EndpointNumber;
149
- /**
150
- * Old API compatibility replaced by id.
151
- *
152
- * @deprecated Use `id` instead.
153
- */
154
- uniqueStorageKey?: string;
155
- }
156
- export declare const rootNode: DeviceTypeDefinition;
157
- export declare const powerSource: DeviceTypeDefinition;
158
- export declare const OTARequestor: DeviceTypeDefinition;
159
- export declare const OTAProvider: DeviceTypeDefinition;
160
- /**
161
- 2.5.3. Conditions
162
- Please see the Base Device Type definition for conformance tags.
163
- This device type SHALL only be used for Nodes which have a device type of Bridge.
164
-
165
- 2.5.5. Cluster Requirements
166
- Each endpoint supporting this device type SHALL include these clusters based on the conformance
167
- defined below.
168
- - 0x0039 Bridged Device Basic Information Server
169
-
170
- 2.5.6. Endpoint Composition
171
- • A Bridged Node endpoint SHALL support one of the following composition patterns:
172
- ◦ Separate Endpoints: All application device types are supported on separate endpoints, and
173
- not on the Bridged Node endpoint. The Bridged Node endpoint’s Descriptor cluster PartsList
174
- attribute SHALL indicate a list of all endpoints representing the functionality of the bridged
175
- device, including the endpoints supporting the application device types, i.e. the full-family
176
- pattern defined in the System Model specification.
177
- ◦ One Endpoint: Both the Bridged Node and one or more application device types are sup
178
- ported on the same endpoint (following application device type rules). Endpoint composi
179
- tion SHALL conform to the application device type(s) definition
180
- */
181
- export declare const bridgedNode: DeviceTypeDefinition;
182
- /**
183
- * An Electrical Sensor device measures the electrical power and/or energy being imported and/or
184
- * exported.
185
- * It is a utility device type that provides information about the electrical power and/or energy
186
- * consumption and generation.
187
- *
188
- * 2.6.3. Device Type Requirements
189
- * Electrical measurements made by either the Electrical Power Measurement cluster, the Electrical
190
- * Energy Measurement cluster, or both SHALL apply to the endpoints indicated by the Power Topology
191
- * cluster.
192
- */
193
- export declare const electricalSensor: DeviceTypeDefinition;
194
- /**
195
- * A Device Energy Management device provides reporting and optionally adjustment of the electrical
196
- * power planned on being consumed or produced by the device.
197
- */
198
- export declare const deviceEnergyManagement: DeviceTypeDefinition;
199
- /**
200
- * Element Requirements:
201
- * - Identify Command TriggerEffect
202
- * - Scenes Management Command CopyScene
203
- * - On/Off Feature Lighting
204
- * - Level Control Feature OnOff
205
- * - Level Control Feature Lighting
206
- * - Level Control Attribute CurrentLevel 1 to 254
207
- * - Level Control Attribute MinLevel 1
208
- * - Level Control Attribute MaxLevel 254
209
- */
210
- export declare const onOffLight: DeviceTypeDefinition;
211
- /**
212
- * Element Requirements:
213
- * - Identify Command TriggerEffect
214
- * - Scenes Management Command CopyScene
215
- * - On/Off Feature Lighting
216
- * - Level Control Feature OnOff
217
- * - Level Control Feature Lighting
218
- * - Level Control Attribute CurrentLevel 1 to 254
219
- * - Level Control Attribute MinLevel 1
220
- * - Level Control Attribute MaxLevel 254
221
- */
222
- export declare const dimmableLight: DeviceTypeDefinition;
223
- /**
224
- * Element Requirements:
225
- * - Identify Command TriggerEffect
226
- * - Scenes Management Command CopyScene
227
- * - On/Off Feature Lighting
228
- * - Level Control Feature OnOff
229
- * - Level Control Feature Lighting
230
- * - Level Control Attribute CurrentLevel 1 to 254
231
- * - Level Control Attribute MinLevel 1
232
- * - Level Control Attribute MaxLevel 254
233
- * - Color Control Feature ColorTemperature
234
- * - Color Control Attribute RemainingTime
235
- */
236
- export declare const colorTemperatureLight: DeviceTypeDefinition;
237
- /**
238
- * Element Requirements:
239
- * - Identify Command TriggerEffect
240
- * - Scenes Management Command CopyScene
241
- * - On/Off Feature Lighting
242
- * - Level Control Feature OnOff
243
- * - Level Control Feature Lighting
244
- * - Level Control Attribute CurrentLevel 1 to 254
245
- * - Level Control Attribute MinLevel 1
246
- * - Level Control Attribute MaxLevel 254
247
- * - Color Control Feature XY
248
- * - Color Control Feature ColorTemperature
249
- * - Color Control Attribute RemainingTime
250
- */
251
- export declare const extendedColorLight: DeviceTypeDefinition;
252
- /**
253
- * Element Requirements:
254
- * - Identify Command TriggerEffect
255
- * - Scenes Management Command CopyScene
256
- * - On/Off Feature Lighting
257
- * - Level Control Feature OnOff
258
- * - Level Control Feature Lighting
259
- * - Level Control Attribute CurrentLevel 1 to 254
260
- * - Level Control Attribute MinLevel 1
261
- * - Level Control Attribute MaxLevel 254
262
- */
263
- export declare const onOffOutlet: DeviceTypeDefinition;
264
- /**
265
- * Element Requirements:
266
- * - Identify Command TriggerEffect
267
- * - Scenes Management Command CopyScene
268
- * - On/Off Feature Lighting
269
- * - Level Control Feature OnOff
270
- * - Level Control Feature Lighting
271
- * - Level Control Attribute CurrentLevel 1 to 254
272
- * - Level Control Attribute MinLevel 1
273
- * - Level Control Attribute MaxLevel 254
274
- */
275
- export declare const dimmableOutlet: DeviceTypeDefinition;
276
- /**
277
- * A Mounted On/Off Control is a fixed device that provides power to another device that is plugged
278
- * into it, and is capable of switching that provided power on or off.
279
- * It is a simple device type that does not require any client clusters.
280
- * Element Requirements:
281
- * - Identify Command TriggerEffect
282
- * - Scenes Management Command CopyScene
283
- * - On/Off Feature Lighting
284
- * - Level Control Feature OnOff
285
- * - Level Control Feature Lighting
286
- * - Level Control Attribute CurrentLevel 1 to 254
287
- * - Level Control Attribute MinLevel 1
288
- * - Level Control Attribute MaxLevel 254
289
- */
290
- export declare const onOffMountedSwitch: DeviceTypeDefinition;
291
- /**
292
- * A Mounted Dimmable Load Control is a fixed device that provides power to another device that is
293
- * plugged into it, and is capable of being switched on or off and have its level adjusted. The Mounted
294
- * Dimmable Load Control is typically used to control a conventional non-communicating light
295
- * through its mains connection using phase cutting.
296
- * It is a simple device type that does not require any client clusters.
297
- * Element Requirements:
298
- * - Identify Command TriggerEffect
299
- * - Scenes Management Command CopyScene
300
- * - On/Off Feature Lighting
301
- * - Level Control Feature OnOff
302
- * - Level Control Feature Lighting
303
- * - Level Control Attribute CurrentLevel 1 to 254
304
- * - Level Control Attribute MinLevel 1
305
- * - Level Control Attribute MaxLevel 254
306
- */
307
- export declare const dimmableMountedSwitch: DeviceTypeDefinition;
308
- /**
309
- * Remark:
310
- * On/Off Cluster:
311
- * - Off If the pump is powered on, store the current level then immediately power it off.
312
- * - On If the pump is powered off, power it on and move immediately to the level stored by a previous Off command. If no such level has been stored,
313
- * move immediately to the maximum level allowed for the pump.
314
- * - Toggle If the pump is powered on, proceed as for the Off command. If the device is powered off, proceed as for the On command.
315
- *
316
- * LevelControl cluster:
317
- * Level Setpoint Meaning
318
- * 0 N/A Pump is stopped,
319
- * 1–200 Level / 2 (0.5–100.0%) Pump setpoint in percent
320
- * 201–255 100.0% Pump setpoint is 100.0%
321
- */
322
- export declare const pumpDevice: DeviceTypeDefinition;
323
- export declare const waterValve: DeviceTypeDefinition;
324
- export declare const onOffSwitch: DeviceTypeDefinition;
325
- export declare const dimmableSwitch: DeviceTypeDefinition;
326
- export declare const colorTemperatureSwitch: DeviceTypeDefinition;
327
- export declare const genericSwitch: DeviceTypeDefinition;
328
- /**
329
- * Closed or contact: state true
330
- * Open or no contact: state false
331
- */
332
- export declare const contactSensor: DeviceTypeDefinition;
333
- export declare const lightSensor: DeviceTypeDefinition;
334
- export declare const occupancySensor: DeviceTypeDefinition;
335
- export declare const temperatureSensor: DeviceTypeDefinition;
336
- export declare const pressureSensor: DeviceTypeDefinition;
337
- export declare const flowSensor: DeviceTypeDefinition;
338
- export declare const humiditySensor: DeviceTypeDefinition;
339
- export declare const smokeCoAlarm: DeviceTypeDefinition;
340
- export declare const airQualitySensor: DeviceTypeDefinition;
341
- export declare const waterFreezeDetector: DeviceTypeDefinition;
342
- export declare const waterLeakDetector: DeviceTypeDefinition;
343
- export declare const rainSensor: DeviceTypeDefinition;
344
- /**
345
- * A Door Lock is a device used to secure a door. It is possible to actuate a door lock either by means of a manual or a remote method.
346
- * Element Requirements:
347
- *
348
- * - AccessControl Attribute Extension
349
- * - DoorLock Feature User
350
- * - DoorLock Attribute AlarmMask
351
- */
352
- export declare const doorLockDevice: DeviceTypeDefinition;
353
- export declare const coverDevice: DeviceTypeDefinition;
354
- /**
355
- * A Thermostat device is capable of having either built-in or separate sensors for temperature,
356
- * humidity or occupancy. It allows the desired temperature to be set either remotely or locally. The
357
- * thermostat is capable of sending heating and/or cooling requirement notifications to a heating/cooling
358
- * unit (for example, an indoor air handler) or is capable of including a mechanism to control a
359
- * heating or cooling unit directly.
360
- *
361
- */
362
- export declare const thermostatDevice: DeviceTypeDefinition;
363
- /**
364
- * A Fan device is typically standalone or mounted on a ceiling or wall and is used to circulate air in a room.
365
- * Remark: it may have a thermostat device type.
366
- * Additional device types MAY also be included in device compositions.
367
- * Element Requirements:
368
- * The FanControl cluster must have the FanModeSequence attribute.
369
- *
370
- * The On/Off cluster is independent from the Fan Control Cluster’s FanMode attribute, which also
371
- * includes an Off setting.
372
- * If the FanMode attribute of the Fan Control cluster is set to a value other than Off when the OnOff
373
- * attribute of the On/Off cluster transitions from TRUE to FALSE, it may be desirable to restore the
374
- * FanMode, SpeedSetting and PercentSetting attribute values of the Fan Control cluster when the OnOff
375
- * attribute of the On/Off cluster later transitions from FALSE to TRUE. If the FanMode is set to Off when
376
- * the device is turned off, this information is lost, as the SpeedSetting and PercentSetting will be set to
377
- * zero. Using the On/Off cluster alongside the Fan Control cluster allows the FanMode, SpeedSetting and
378
- * PercentSetting to remain unchanged when the device is turned off. In this case, the On/Off cluster
379
- * would be set to Off, and the SpeedCurrent and PercentCurrent set to zero, without changing FanMode,
380
- * SpeedSetting and PercentSetting.
381
- */
382
- export declare const fanDevice: DeviceTypeDefinition;
383
- /**
384
- * An Air Purifier is a standalone device that is designed to clean the air in a room.
385
- * It is a device that has a fan to control the air speed while it is operating. Optionally, it can report on
386
- * the condition of its filters.
387
- *
388
- * Remark:
389
- * An Air Purifier MAY expose elements of its functionality through one or more additional device
390
- * types on different endpoints. All devices used in compositions SHALL adhere to the disambiguation
391
- * requirements of the System Model. Other device types, not explicitly listed in the table, MAY also be
392
- * included in device compositions but are not considered part of the core functionality of the device.
393
- * 0x0301 Thermostat O
394
- * 0x0302 Temperature Sensor O
395
- * 0x0307 Humidity Sensor O
396
- * 0x002C Air Quality Sensor O
397
- *
398
- * Cluster Restrictions:
399
- * The On/Off cluster is independent from the Fan Control Cluster’s FanMode attribute, which also
400
- * includes an Off setting.
401
- * If the FanMode attribute of the Fan Control cluster is set to a value other than Off when the OnOff
402
- * attribute of the On/Off cluster transitions from TRUE to FALSE, it may be desirable to restore the
403
- * FanMode, SpeedSetting and PercentSetting attribute values of the Fan Control cluster when the OnOff
404
- * attribute of the On/Off cluster later transitions from FALSE to TRUE. If the FanMode is set to Off when
405
- * the device is turned off, this information is lost, as the SpeedSetting and PercentSetting will be set to
406
- * zero. Using the On/Off cluster alongside the Fan Control cluster allows the FanMode, SpeedSetting and
407
- * PercentSetting to remain unchanged when the device is turned off. In this case, the On/Off cluster
408
- * would be set to Off, and the SpeedCurrent and PercentCurrent set to zero, without changing FanMode,
409
- * SpeedSetting and PercentSetting.
410
- *
411
- */
412
- export declare const airPurifier: DeviceTypeDefinition;
413
- /**
414
- * 10.2. A Basic Video Player has playback controls (play, pause, etc.) and keypad remote controls (up, down, number input),
415
- * but is not able to launch arbitrary content applications. It is a commissionable node.
416
- *
417
- * Required server clusters (minimum features per spec):
418
- * - Media Playback (media playback controls)
419
- * - Keypad Input (remote key events)
420
- * - On/Off (basic power control)
421
- *
422
- * Optional server clusters (additional capabilities commonly implemented):
423
- * - Audio Output (speaker selection / volume endpoints)
424
- * - Channel (linear channel navigation)
425
- * - Target Navigator (high level app / target navigation)
426
- * - Media Input (input source selection)
427
- * - Low Power (power saving / wake logic)
428
- * - Wake On LAN (remote wake capabilities)
429
- * - Messages (device messaging / notifications)
430
- * - Content Control (parental or content access control)
431
- */
432
- export declare const basicVideoPlayer: DeviceTypeDefinition;
433
- /**
434
- * 10.3. A Casting Video Player supports Basic Video Player features and content launching features.
435
- * It is a Commissioner and can launch Content Apps (Content Launcher cluster) and optionally expose
436
- * an Application Launcher cluster when acting as a Content App Platform.
437
- *
438
- * Required server clusters (minimum features per spec):
439
- * - Media Playback (playback controls)
440
- * - Keypad Input (remote key events)
441
- * - Content Launcher (content launching capability)
442
- * - On/Off (basic power control)
443
- *
444
- * Optional server clusters (additional capabilities):
445
- * - Application Launcher (hosting content apps)
446
- * - Account Login (account / session association)
447
- * - Audio Output (output / volume endpoints)
448
- * - Channel (linear channel navigation)
449
- * - Target Navigator (high level target navigation)
450
- * - Media Input (input source selection)
451
- * - Low Power (power saving / wake logic)
452
- * - Wake On LAN (remote wake capabilities)
453
- * - Messages (device messaging / notifications)
454
- * - Content Control (parental or content access control)
455
- */
456
- export declare const castingVideoPlayer: DeviceTypeDefinition;
457
- /**
458
- * 10.4. A Speaker device type controls the speaker.
459
- * unmute/mute, the On/Off cluster SHALL be used. A value of TRUE for the OnOff attribute
460
- * SHALL represent the volume on (not muted) state, while a value of FALSE SHALL represent the volume
461
- * off (muted) state. For volume level control, the Level cluster SHALL be used.
462
- */
463
- export declare const speakerDevice: DeviceTypeDefinition;
464
- export declare const modeSelect: DeviceTypeDefinition;
465
- /**
466
- * This device type aggregates endpoints as a collection. Clusters on the endpoint indicating this
467
- * device type provide functionality for the collection of descendant endpoints present in the PartsList
468
- * of the endpoint’s descriptor, for example the Actions cluster.
469
- *
470
- * Endpoint Composition:
471
- * An Aggregator endpoint’s Descriptor cluster PartsList attribute SHALL list the collection of all endpoints
472
- * aggregated by the Aggregator device type, i.e. the full-family pattern defined in the System Model specification.
473
- *
474
- * Disambiguation:
475
- * If the Duplicate condition applies to child endpoints of an Aggregator endpoint that represent multiple
476
- * independent bridged devices, the endpoints SHOULD make available metadata to allow a
477
- * client to disambiguate distinct bridged devices with an overlap in application device types.
478
- *
479
- * Typically this is done using the NodeLabel attribute of the Bridged Device Basic Information cluster
480
- * - thus reusing the naming information which the bridge already has to allow disambiguation to the
481
- * user when using a direct user interface to the bridge.
482
- *
483
- * Actions cluster (9.14 Matter specification):
484
- * If a Bridge has (such) information on topology or logical grouping, it SHOULD expose such information
485
- * in the EndpointLists attribute of an Actions cluster (the ActionLists of which MAY be empty if
486
- * no actions are exposed). 9.12 Matter specification
487
- *
488
- * 9.12.5. New features for Bridged Devices
489
- * Bridged Devices can have their software updated independently of the Bridge, through Bridge Manufacturer-
490
- * specific means. These updates MAY result in one or more changes to their capabilities,
491
- * such as supported clusters and/or attributes, for an endpoint. Like every Matter Node, every endpoint
492
- * on the Bridge’s Node contains a Descriptor cluster that contains attributes for the device types
493
- * (DeviceTypeList), endpoints (PartsList) and supported clusters (ServerList and ClientList). Nodes
494
- * that wish to be notified of such changes SHOULD monitor changes of these attributes.
495
- */
496
- export declare const aggregator: DeviceTypeDefinition;
497
- export declare const bridge: DeviceTypeDefinition;
498
- /**
499
- * A Robotic Vacuum Cleaner is a device that is capable of cleaning floors and other surfaces
500
- * in a home or office environment. It is typically a mobile device that can navigate around
501
- * obstacles and can be controlled remotely.
502
- *
503
- * Cluster Usage:
504
- * The RVC Operational State cluster’s OperationalState attribute SHALL be updated according to the
505
- * state of the device, and therefore it SHOULD be used for monitoring purposes.
506
- *
507
- * To attempt starting a cleaning operation, the RVC Run Mode cluster can be sent a ChangeToMode
508
- * command with the NewMode field set to a mode that has the Cleaning mode tag associated with it.
509
- *
510
- * To attempt stopping a cleaning operation, the RVC Run Mode cluster can be sent a ChangeToMode
511
- * command with the NewMode field set to a mode that has the Idle mode tag associated with it.
512
- *
513
- * To attempt pausing a cleaning operation, the RVC Operational State cluster can be sent a Pause command.
514
- *
515
- * To attempt resuming a cleaning operation, the RVC Operational State cluster can be sent a Resume
516
- * command.
517
- *
518
- *
519
- */
520
- export declare const roboticVacuumCleaner: DeviceTypeDefinition;
521
- /**
522
- * Cluster Restrictions:
523
- * On/Off Cluster: the DF (Dead Front) feature is required
524
- */
525
- export declare const laundryWasher: DeviceTypeDefinition;
526
- /**
527
- * A refrigerator represents a device that contains one or more cabinets that are capable of chilling or freezing food.
528
- * A Refrigerator SHALL be composed of at least one endpoint with the Temperature Controlled Cabinet device type.
529
- *
530
- * Device Type Requirements:
531
- * 0x0071 Temperature Controlled Cabinet
532
- */
533
- export declare const refrigerator: DeviceTypeDefinition;
534
- /**
535
- * A Room Air Conditioner is a device with the primary function of controlling the air temperature in a single room.
536
- *
537
- * A Room Air Conditioner MAY have zero or more of each device type listed in this table subject to
538
- * the conformance column of the table. All devices used in compositions SHALL adhere to the disambiguation
539
- * requirements of the System Model. Additional device types not listed in this table MAY also be included in device compositions.
540
- * 0x0302 Temperature Sensor O
541
- * 0x0307 Humidity Sensor O
542
- *
543
- * Remark:
544
- * The DF (Dead Front) feature is required for the On/Off cluster in this device type:
545
- * - Thermostat LocalTemperature null
546
- * - Temperature Measurement MeasuredValue null
547
- * - Relative Humidity Measurement MeasuredValue null
548
- * - Fan Control SpeedSetting null
549
- * - Fan Control PercentSetting null
550
- */
551
- export declare const airConditioner: DeviceTypeDefinition;
552
- /**
553
- * A Temperature Controlled Cabinet only exists composed as part of another device type. It represents
554
- * a single cabinet that is capable of having its temperature controlled. Such a cabinet may be
555
- * chilling or freezing food, for example as part of a refrigerator, freezer, wine chiller, or other similar
556
- * device. Equally, such a cabinet may be warming or heating food, for example as part of an oven,
557
- * range, or similar device.
558
- * Conditions:
559
- * Cooler The device has cooling functionality.
560
- */
561
- export declare const temperatureControlledCabinetCooler: DeviceTypeDefinition;
562
- /**
563
- * A Temperature Controlled Cabinet only exists composed as part of another device type. It represents
564
- * a single cabinet that is capable of having its temperature controlled. Such a cabinet may be
565
- * chilling or freezing food, for example as part of a refrigerator, freezer, wine chiller, or other similar
566
- * device. Equally, such a cabinet may be warming or heating food, for example as part of an oven,
567
- * range, or similar device.
568
- * Conditions:
569
- * Heater The device has heating functionality.
570
- */
571
- export declare const temperatureControlledCabinetHeater: DeviceTypeDefinition;
572
- /**
573
- * Cluster Restrictions:
574
- * On/Off Cluster: the DF (Dead Front) feature is required
575
- */
576
- export declare const dishwasher: DeviceTypeDefinition;
577
- /**
578
- * Cluster Restrictions:
579
- * On/Off Cluster: the DF (Dead Front) feature is required
580
- */
581
- export declare const laundryDryer: DeviceTypeDefinition;
582
- /**
583
- * A Cook Surface device type represents a heating object on a cooktop or other similar device. It
584
- * SHALL only be used when composed as part of another device type (cooktop).
585
- *
586
- * Cluster Restrictions:
587
- * The OffOnly feature is required for the On/Off cluster in this device type due to safety requirements.
588
- */
589
- export declare const cookSurface: DeviceTypeDefinition;
590
- /**
591
- * A cooktop is a cooking surface that heats food either by transferring currents from an electromagnetic
592
- * field located below the glass surface directly to the magnetic induction cookware placed
593
- * above or through traditional gas or electric burners.
594
- *
595
- * Device Type Requirements:
596
- * A Cooktop SHALL be composed of zero or more endpoints with the Cook Surface device type as defined by the conformance below.
597
- * 0x0077 Cook Surface min 1 O
598
- *
599
- * Cluster Restrictions:
600
- * The OffOnly feature is required for the On/Off cluster in this device type due to safety requirements.
601
- */
602
- export declare const cooktop: DeviceTypeDefinition;
603
- /**
604
- * An oven represents a device that contains one or more cabinets, and optionally a single cooktop, that are all capable of heating food.
605
- * An oven is always defined via endpoint composition.
606
- * Conditions:
607
- * An Oven SHALL have the Heater condition applied to at least one endpoint containing the Temperature Control Cluster.
608
- * Device Type Requirements:
609
- * - 0x0071 Temperature Controlled Cabinet min 1
610
- * - 0x0078 Cooktop
611
- */
612
- export declare const oven: DeviceTypeDefinition;
613
- /**
614
- * An Extractor Hood is a device that is generally installed above a cooking surface in residential kitchens.
615
- * Additional device types not listed in this table MAY also be included in device compositions.
616
- * Device Type Requirements:
617
- * 0x0100+ On/Off Light+ O
618
- *
619
- *
620
- * Element Requirements:
621
- * - 0x0202 Fan Control Feature Rocking X
622
- * - 0x0202 Fan Control Feature Wind X
623
- * - 0x0202 Fan Control Feature AirflowDirection X
624
- */
625
- export declare const extractorHood: DeviceTypeDefinition;
626
- /**
627
- * A Microwave Oven is a device with the primary function of heating foods and beverages using a magnetron.
628
- * A Microwave Oven is a device which at a minimum is capable of being started and stopped and of setting a power level.
629
- * A Microwave Oven MAY also support additional capabilities via endpoint composition.
630
- *
631
- */
632
- export declare const microwaveOven: DeviceTypeDefinition;
633
- /**
634
- * An EVSE (Electric Vehicle Supply Equipment) is a device that allows an EV (Electric Vehicle) to be
635
- * connected to the mains electricity supply to allow it to be charged (or discharged in case of Vehicle
636
- * to Grid / Vehicle to Home applications).
637
- *
638
- * 14.1.5. Device Type Requirements
639
- * An EVSE SHALL be composed of at least one endpoint with device types as defined by the conformance
640
- * below. There MAY be more endpoints with other device types existing in the EVSE.
641
- * - ID Name Constraint Conformance
642
- * - 0x0011 Power Source min 1 M
643
- * - 0x0510 Electrical Sensor min 1 M
644
- * - 0x050D Device Energy Management min 1 M
645
- *
646
- * The Electrical Sensor device SHALL include both the Electrical Energy Measurement and Electrical
647
- * Power Measurement clusters, measuring the total energy and power of the EVSE.
648
- *
649
- * The Device Energy Management cluster included in the Device Energy Management device SHALL
650
- * support the Power Forecast Reporting (PFR) feature.
651
- */
652
- export declare const evse: DeviceTypeDefinition;
653
- /**
654
- * A water heater is a device that is generally installed in properties to heat water for showers, baths etc.
655
- * A Water Heater is always defined via endpoint composition.
656
- *
657
- * 14.2.5. Device Type Requirements
658
- * A Water Heater SHALL be composed of at least one endpoint with device types as defined by the
659
- * conformance below. There MAY be more endpoints with other device types existing in the Water Heater.
660
- * - ID Name Constraint Conformance
661
- * - 0x0011 Power Source O
662
- * - 0x0302 Temperature Sensor O
663
- * - 0x0510 Electrical Sensor desc
664
- * - 0x050D Device Energy Management O
665
- *
666
- * 14.2.7. Element Requirements
667
- * 0x0201 Thermostat Feature Heating M
668
- *
669
- * The Energy Management feature of the Water Heater cluster SHALL be supported if the Device
670
- * Energy Management device type is included.
671
- * If Off is a supported SystemMode in the Thermostat cluster, setting the SystemMode of the Thermostat
672
- * cluster to Off SHALL set the CurrentMode attribute of the Water Heater Mode cluster to a mode
673
- * having the Off mode tag value and vice versa.
674
- * At least one entry in the SupportedModes attribute of the Water Heater Mode cluster SHALL
675
- * include the Timed mode tag in the ModeTags field list.
676
- *
677
- * WaterHeaterMode Cluster
678
- * 9.6.6.1. SupportedModes Attribute
679
- * At least one entry in the SupportedModes attribute SHALL include the Manual mode tag in the
680
- * ModeTags field list.
681
- * At least one entry in the SupportedModes attribute SHALL include the Off mode tag in the ModeTags
682
- * field list.
683
- * An entry in the SupportedModes attribute that includes one of an Off, Manual, or Timed tag SHALL
684
- * NOT also include an additional instance of any one of these tag types.
685
- */
686
- export declare const waterHeater: DeviceTypeDefinition;
687
- /**
688
- * A Solar Power device is a device that allows a solar panel array, which can optionally be comprised
689
- * of a set parallel strings of solar panels, and its associated controller and, if appropriate, inverter, to
690
- * be monitored and controlled by an Energy Management System.
691
- *
692
- * 14.3.5. Device Type Requirements
693
- * A Solar Power device SHALL be composed of at least one endpoint with device types as defined by
694
- * the conformance below. There MAY be more endpoints with additional instances of these device
695
- * types or additional device types existing in the Solar Power device.
696
- *
697
- * - ID Name Constraint Conformance
698
- * - 0x0011 Power Source min 1 M
699
- * - 0x0510 Electrical Sensor min 1 M
700
- * - 0x050D Device Energy Management O
701
- * - 0x0302 Temperature Sensor O
702
- *
703
- * 14.3.5.1. Cluster Requirements on Composing Device Types
704
- *
705
- * - 0x0011 Power Source 0x002F Power Source Feature Wired M
706
- * - 0x0011 Power Source 0x001D Descriptor Feature TagList M
707
- * - 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement M
708
- * - 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement Attribute Voltage M
709
- * - 0x0510 Electrical Sensor 0x0090 Electrical Power Measurement Attribute ActiveCurrent M
710
- * - 0x0510 Electrical Sensor 0x0091 Electrical Energy Measurement M
711
- * - 0x0510 Electrical Sensor 0x0091 Electrical Energy Measurement Feature ExportedEnergy M
712
- * - 0x050D Device Energy Management 0x0098 Device Energy Management Feature PowerAdjustment M
713
- * - 0x0302 Temperature Sensor 0x001D Descriptor Feature TagList M
714
- */
715
- export declare const solarPower: DeviceTypeDefinition;
716
- /**
717
- * A Battery Storage device is a device that allows a DC battery, which can optionally be comprised of
718
- * a set parallel strings of battery packs and associated controller, and an AC inverter, to be monitored
719
- * and controlled by an Energy Management System in order to manage the peaks and troughs of supply
720
- * and demand, and/or to optimize cost of the energy consumed in premises. It is not intended to
721
- * be used for a UPS directly supplying a set of appliances, nor for portable battery storage devices.
722
- *
723
- * 14.4.5. Device Type Requirements
724
- * A Battery Storage device SHALL be composed of at least one endpoint with device types as defined by
725
- * the conformance below. There MAY be more endpoints with additional instances of these device
726
- * types or additional device types existing in the Battery Storage device.
727
- * - ID Name Constraint Conformance
728
- * - 0x0011 Power Source min 1 M
729
- * - 0x0510 Electrical Sensor min 1 M
730
- * - 0x050D Device Energy Management M
731
- * - 0x0302 Temperature Sensor O
732
- * - 0x0017 Solar Power O
733
- *
734
- * See 14.4.5.1. Cluster Requirements on Composing Device Types
735
- */
736
- export declare const batteryStorage: DeviceTypeDefinition;
737
- /**
738
- * A Heat Pump device is a device that uses electrical energy to heat either spaces or water tanks using
739
- * ground, water or air as the heat source. These typically can heat the air or can pump water via central
740
- * heating radiators or underfloor heating systems. It is typical to also heat hot water and store
741
- * the heat in a hot water tank.
742
- *
743
- * 14.5.1. Heat Pump Architecture
744
- * A Heat Pump device is always defined via endpoint composition.
745
- *
746
- * 14.5.5. Device Type Requirements
747
- * A Heat Pump device SHALL be composed of at least one endpoint with device types as defined by
748
- * the conformance below. There MAY be more endpoints with additional instances of these device
749
- * types or additional device types existing in the Heat Pump device.
750
- * - ID Name Constraint Conformance
751
- * - 0x0011 Power Source M
752
- * - 0x0510 Electrical Sensor min 1 M
753
- * - 0x050D Device Energy Management M
754
- * - 0x0301 Thermostat O
755
- * - 0x050f Water Heater O
756
- * - 0x0302 Temperature Sensor O
757
- *
758
- * See 14.5.5.1. Cluster Requirements on Composing Device Types
759
- */
760
- export declare const heatPump: DeviceTypeDefinition;
761
- //# sourceMappingURL=matterbridgeDeviceTypes.d.ts.map