matterbridge 1.2.4 → 1.2.6
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 +29 -0
- package/README.md +106 -8
- package/TODO.md +7 -0
- package/dist/AirQualityCluster.d.ts +2 -13
- package/dist/AirQualityCluster.d.ts.map +1 -1
- package/dist/AirQualityCluster.js +6 -6
- package/dist/AirQualityCluster.js.map +1 -1
- package/dist/EveHistoryCluster.d.ts +6 -26
- package/dist/EveHistoryCluster.d.ts.map +1 -1
- package/dist/EveHistoryCluster.js +6 -14
- package/dist/EveHistoryCluster.js.map +1 -1
- package/dist/TvocCluster.d.ts +2 -15
- package/dist/TvocCluster.d.ts.map +1 -1
- package/dist/TvocCluster.js +6 -6
- package/dist/TvocCluster.js.map +1 -1
- package/dist/cli.js +6 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/matterbridge.d.ts +15 -0
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +367 -174
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeController.d.ts.map +1 -1
- package/dist/matterbridgeController.js +9 -0
- package/dist/matterbridgeController.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +1241 -9
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +315 -92
- package/dist/matterbridgeDevice.js.map +1 -1
- package/frontend/build/asset-manifest.json +14 -14
- package/frontend/build/index.html +1 -1
- package/frontend/build/matterbridge 32x32.png +0 -0
- package/frontend/build/matterbridge 64x64.png +0 -0
- package/frontend/build/static/css/main.61f6cf42.css +1 -1
- package/frontend/build/static/css/main.61f6cf42.css.map +1 -1
- package/frontend/build/static/js/main.6b861489.js +3 -0
- package/frontend/build/static/js/{main.e3553a4d.js.LICENSE.txt → main.6b861489.js.LICENSE.txt} +99 -99
- package/frontend/build/static/js/main.6b861489.js.map +1 -0
- package/matterbridge.service +17 -0
- package/package.json +6 -5
- package/dist/matterbridgeComposed.d.ts +0 -43
- package/dist/matterbridgeComposed.d.ts.map +0 -1
- package/dist/matterbridgeComposed.js +0 -58
- package/dist/matterbridgeComposed.js.map +0 -1
- package/frontend/build/Matterbridge.jpg +0 -0
- package/frontend/build/static/js/main.e3553a4d.js +0 -3
- package/frontend/build/static/js/main.e3553a4d.js.map +0 -1
|
@@ -20,13 +20,14 @@
|
|
|
20
20
|
* See the License for the specific language governing permissions and
|
|
21
21
|
* limitations under the License. *
|
|
22
22
|
*/
|
|
23
|
-
import { ClusterServerHandlers, ColorControl, DoorLock, Identify, LevelControl, OnOff, PowerSource, Thermostat, WindowCovering } from '@project-chip/matter-node.js/cluster';
|
|
24
|
-
import { ClusterId } from '@project-chip/matter-node.js/datatype';
|
|
23
|
+
import { ClusterServerHandlers, ColorControl, DoorLock, Identify, LevelControl, OccupancySensing, OnOff, PowerSource, Thermostat, TimeSync, WindowCovering } from '@project-chip/matter-node.js/cluster';
|
|
24
|
+
import { ClusterId, VendorId } from '@project-chip/matter-node.js/datatype';
|
|
25
25
|
import { Device, DeviceTypeDefinition, EndpointOptions } from '@project-chip/matter-node.js/device';
|
|
26
26
|
import { AtLeastOne } from '@project-chip/matter-node.js/util';
|
|
27
27
|
import { MatterHistory } from 'matter-history';
|
|
28
28
|
import { AirQuality } from './AirQualityCluster.js';
|
|
29
29
|
import { AnsiLogger } from 'node-ansi-logger';
|
|
30
|
+
import { TvocMeasurement } from './TvocCluster.js';
|
|
30
31
|
type MakeMandatory<T> = Exclude<T, undefined>;
|
|
31
32
|
type MatterbridgeDeviceCommands = {
|
|
32
33
|
identify: MakeMandatory<ClusterServerHandlers<typeof Identify.Complete>['identify']>;
|
|
@@ -96,6 +97,106 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
96
97
|
* @returns The serialized Matterbridge device object.
|
|
97
98
|
*/
|
|
98
99
|
serialize(pluginName: string): SerializedMatterbridgeDevice;
|
|
100
|
+
/**
|
|
101
|
+
* Returns a default static EveHistoryClusterServer object with the specified voltage, current, power, and consumption values.
|
|
102
|
+
* This shows up in HA as a static sensor!
|
|
103
|
+
* @param voltage - The voltage value (default: 0).
|
|
104
|
+
* @param current - The current value (default: 0).
|
|
105
|
+
* @param power - The power value (default: 0).
|
|
106
|
+
* @param consumption - The consumption value (default: 0).
|
|
107
|
+
* @returns The default static EveHistoryClusterServer object.
|
|
108
|
+
*/
|
|
109
|
+
getDefaultStaticEveHistoryClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
110
|
+
readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
111
|
+
readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
112
|
+
readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
113
|
+
readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
114
|
+
readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
115
|
+
readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
116
|
+
readonly TimesOpened: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
117
|
+
readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
118
|
+
readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
119
|
+
readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
120
|
+
readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
121
|
+
readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
122
|
+
readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
123
|
+
readonly MotionSensitivity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
124
|
+
readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
125
|
+
readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
126
|
+
readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
127
|
+
readonly Elevation: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
128
|
+
readonly AirPressure: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
129
|
+
readonly WeatherTrend: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
130
|
+
readonly TemperatureDisplayUnits: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
131
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
132
|
+
readonly eveDoor: import("@project-chip/matter.js/schema").BitFlag;
|
|
133
|
+
readonly eveMotion: import("@project-chip/matter.js/schema").BitFlag;
|
|
134
|
+
readonly eveEnergy: import("@project-chip/matter.js/schema").BitFlag;
|
|
135
|
+
readonly eveWeather: import("@project-chip/matter.js/schema").BitFlag;
|
|
136
|
+
readonly eveRoom: import("@project-chip/matter.js/schema").BitFlag;
|
|
137
|
+
}>>, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
138
|
+
readonly eveDoor: import("@project-chip/matter.js/schema").BitFlag;
|
|
139
|
+
readonly eveMotion: import("@project-chip/matter.js/schema").BitFlag;
|
|
140
|
+
readonly eveEnergy: import("@project-chip/matter.js/schema").BitFlag;
|
|
141
|
+
readonly eveWeather: import("@project-chip/matter.js/schema").BitFlag;
|
|
142
|
+
readonly eveRoom: import("@project-chip/matter.js/schema").BitFlag;
|
|
143
|
+
}>> & Omit<{
|
|
144
|
+
readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
145
|
+
readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
146
|
+
readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
147
|
+
readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
148
|
+
readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
149
|
+
readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
150
|
+
readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
151
|
+
readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
152
|
+
readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
153
|
+
readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
154
|
+
readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
155
|
+
readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
156
|
+
readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
157
|
+
readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
158
|
+
readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
159
|
+
}, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
160
|
+
readonly eveDoor: import("@project-chip/matter.js/schema").BitFlag;
|
|
161
|
+
readonly eveMotion: import("@project-chip/matter.js/schema").BitFlag;
|
|
162
|
+
readonly eveEnergy: import("@project-chip/matter.js/schema").BitFlag;
|
|
163
|
+
readonly eveWeather: import("@project-chip/matter.js/schema").BitFlag;
|
|
164
|
+
readonly eveRoom: import("@project-chip/matter.js/schema").BitFlag;
|
|
165
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
166
|
+
readonly ConfigDataGet: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
167
|
+
readonly ConfigDataSet: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
168
|
+
readonly HistoryStatus: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
169
|
+
readonly HistoryEntries: import("@project-chip/matter-node.js/cluster").Attribute<Uint8Array, any>;
|
|
170
|
+
readonly HistoryRequest: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
171
|
+
readonly HistorySetTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<Uint8Array, any>;
|
|
172
|
+
readonly TimesOpened: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
173
|
+
readonly LastEvent: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
174
|
+
readonly Voltage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
175
|
+
readonly Current: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
176
|
+
readonly Consumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
177
|
+
readonly TotalConsumption: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
178
|
+
readonly EnergyUnknown: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
179
|
+
readonly MotionSensitivity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
180
|
+
readonly ResetTotal: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
181
|
+
readonly ChildLock: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
182
|
+
readonly RLoc: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
183
|
+
readonly Elevation: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
184
|
+
readonly AirPressure: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
185
|
+
readonly WeatherTrend: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
186
|
+
readonly TemperatureDisplayUnits: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
187
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
188
|
+
readonly eveDoor: import("@project-chip/matter.js/schema").BitFlag;
|
|
189
|
+
readonly eveMotion: import("@project-chip/matter.js/schema").BitFlag;
|
|
190
|
+
readonly eveEnergy: import("@project-chip/matter.js/schema").BitFlag;
|
|
191
|
+
readonly eveWeather: import("@project-chip/matter.js/schema").BitFlag;
|
|
192
|
+
readonly eveRoom: import("@project-chip/matter.js/schema").BitFlag;
|
|
193
|
+
}>>, "ConfigDataGet" | "ConfigDataSet" | "HistoryStatus" | "HistoryEntries" | "HistoryRequest" | "HistorySetTime" | "LastEvent" | "TimesOpened" | "ResetTotal" | "RLoc" | "MotionSensitivity" | "Voltage" | "Current" | "Consumption" | "TotalConsumption" | "EnergyUnknown" | "ChildLock" | "Elevation" | "AirPressure" | "WeatherTrend" | "TemperatureDisplayUnits" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
194
|
+
readonly eveDoor: import("@project-chip/matter.js/schema").BitFlag;
|
|
195
|
+
readonly eveMotion: import("@project-chip/matter.js/schema").BitFlag;
|
|
196
|
+
readonly eveEnergy: import("@project-chip/matter.js/schema").BitFlag;
|
|
197
|
+
readonly eveWeather: import("@project-chip/matter.js/schema").BitFlag;
|
|
198
|
+
readonly eveRoom: import("@project-chip/matter.js/schema").BitFlag;
|
|
199
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
99
200
|
/**
|
|
100
201
|
* Creates a room Eve History Cluster Server.
|
|
101
202
|
*
|
|
@@ -131,14 +232,48 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
131
232
|
* @param log - The AnsiLogger instance.
|
|
132
233
|
*/
|
|
133
234
|
createDoorEveHistoryClusterServer(history: MatterHistory, log: AnsiLogger): void;
|
|
235
|
+
/**
|
|
236
|
+
* Get a default IdentifyCluster server.
|
|
237
|
+
*/
|
|
238
|
+
getDefaultIdentifyClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
239
|
+
readonly identifyTime: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
|
|
240
|
+
readonly identifyType: import("@project-chip/matter-node.js/cluster").Attribute<Identify.IdentifyType, any>;
|
|
241
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
242
|
+
readonly query: import("@project-chip/matter.js/schema").BitFlag;
|
|
243
|
+
}>>, {}>;
|
|
134
244
|
/**
|
|
135
245
|
* Creates a default IdentifyCluster server.
|
|
136
246
|
*/
|
|
137
247
|
createDefaultIdentifyClusterServer(): void;
|
|
248
|
+
/**
|
|
249
|
+
* Get a default IdentifyCluster server.
|
|
250
|
+
*/
|
|
251
|
+
getDefaultGroupsClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
252
|
+
readonly nameSupport: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
253
|
+
nameSupport: import("@project-chip/matter.js/schema").BitFlag;
|
|
254
|
+
}>, any>;
|
|
255
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
256
|
+
readonly groupNames: import("@project-chip/matter.js/schema").BitFlag;
|
|
257
|
+
}>>, {}>;
|
|
138
258
|
/**
|
|
139
259
|
* Creates a default groups cluster server and adds it to the device.
|
|
140
260
|
*/
|
|
141
261
|
createDefaultGroupsClusterServer(): void;
|
|
262
|
+
/**
|
|
263
|
+
* Get a default scenes cluster server and adds it to the current instance.
|
|
264
|
+
*/
|
|
265
|
+
getDefaultScenesClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
266
|
+
readonly sceneCount: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
267
|
+
readonly currentScene: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
268
|
+
readonly currentGroup: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter-node.js/datatype").GroupId, any>;
|
|
269
|
+
readonly sceneValid: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
|
|
270
|
+
readonly nameSupport: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
271
|
+
nameSupport: import("@project-chip/matter.js/schema").BitFlag;
|
|
272
|
+
}>, any>;
|
|
273
|
+
readonly lastConfiguredBy: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
|
|
274
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
275
|
+
readonly sceneNames: import("@project-chip/matter.js/schema").BitFlag;
|
|
276
|
+
}>>, {}>;
|
|
142
277
|
/**
|
|
143
278
|
* Creates a default scenes cluster server and adds it to the current instance.
|
|
144
279
|
*/
|
|
@@ -152,6 +287,60 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
152
287
|
* @returns A unique identifier generated using the MD5 hash algorithm.
|
|
153
288
|
*/
|
|
154
289
|
private createUniqueId;
|
|
290
|
+
/**
|
|
291
|
+
* Get a default Basic Information Cluster Server.
|
|
292
|
+
*
|
|
293
|
+
* @param deviceName - The name of the device.
|
|
294
|
+
* @param serialNumber - The serial number of the device.
|
|
295
|
+
* @param vendorId - The vendor ID of the device.
|
|
296
|
+
* @param vendorName - The vendor name of the device.
|
|
297
|
+
* @param productId - The product ID of the device.
|
|
298
|
+
* @param productName - The product name of the device.
|
|
299
|
+
* @param softwareVersion - The software version of the device. Default is 1.
|
|
300
|
+
* @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
|
|
301
|
+
* @param hardwareVersion - The hardware version of the device. Default is 1.
|
|
302
|
+
* @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
|
|
303
|
+
*/
|
|
304
|
+
getDefaultBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productId: number, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
305
|
+
readonly dataModelRevision: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
306
|
+
readonly vendorName: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
|
|
307
|
+
readonly vendorId: import("@project-chip/matter-node.js/cluster").FixedAttribute<VendorId, any>;
|
|
308
|
+
readonly productName: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
|
|
309
|
+
readonly productId: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
310
|
+
readonly nodeLabel: import("@project-chip/matter-node.js/cluster").WritableAttribute<string, any>;
|
|
311
|
+
readonly location: import("@project-chip/matter-node.js/cluster").WritableAttribute<string, any>;
|
|
312
|
+
readonly hardwareVersion: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
313
|
+
readonly hardwareVersionString: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
|
|
314
|
+
readonly softwareVersion: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
315
|
+
readonly softwareVersionString: import("@project-chip/matter-node.js/cluster").FixedAttribute<string, any>;
|
|
316
|
+
readonly manufacturingDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
317
|
+
readonly partNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
318
|
+
readonly productUrl: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
319
|
+
readonly productLabel: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
320
|
+
readonly serialNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
321
|
+
readonly localConfigDisabled: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
322
|
+
readonly reachable: import("@project-chip/matter-node.js/cluster").OptionalAttribute<boolean, any>;
|
|
323
|
+
readonly uniqueId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
324
|
+
readonly capabilityMinima: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
325
|
+
caseSessionsPerFabric: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
326
|
+
subscriptionsPerFabric: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
327
|
+
}>, any>;
|
|
328
|
+
readonly productAppearance: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
329
|
+
finish: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BasicInformation.ProductFinish>;
|
|
330
|
+
primaryColor: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BasicInformation.Color | null>;
|
|
331
|
+
}>, any>;
|
|
332
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
|
|
333
|
+
readonly startUp: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
334
|
+
softwareVersion: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
335
|
+
}>, any>;
|
|
336
|
+
readonly shutDown: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
|
|
337
|
+
readonly leave: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
338
|
+
fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex>;
|
|
339
|
+
}>, any>;
|
|
340
|
+
readonly reachableChanged: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
341
|
+
reachableNewValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
|
|
342
|
+
}>, any>;
|
|
343
|
+
}>;
|
|
155
344
|
/**
|
|
156
345
|
* Creates a default Basic Information Cluster Server.
|
|
157
346
|
*
|
|
@@ -167,6 +356,49 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
167
356
|
* @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
|
|
168
357
|
*/
|
|
169
358
|
createDefaultBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productId: number, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): void;
|
|
359
|
+
/**
|
|
360
|
+
* Get a default BridgedDeviceBasicInformationClusterServer.
|
|
361
|
+
*
|
|
362
|
+
* @param deviceName - The name of the device.
|
|
363
|
+
* @param serialNumber - The serial number of the device.
|
|
364
|
+
* @param vendorId - The vendor ID of the device.
|
|
365
|
+
* @param vendorName - The name of the vendor.
|
|
366
|
+
* @param productName - The name of the product.
|
|
367
|
+
* @param softwareVersion - The software version of the device. Default is 1.
|
|
368
|
+
* @param softwareVersionString - The software version string of the device. Default is 'v.1.0.0'.
|
|
369
|
+
* @param hardwareVersion - The hardware version of the device. Default is 1.
|
|
370
|
+
* @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
|
|
371
|
+
*/
|
|
372
|
+
getDefaultBridgedDeviceBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
373
|
+
readonly vendorName: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
374
|
+
readonly vendorId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<VendorId, any>;
|
|
375
|
+
readonly productName: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
376
|
+
readonly nodeLabel: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<string, any>;
|
|
377
|
+
readonly hardwareVersion: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
378
|
+
readonly hardwareVersionString: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
379
|
+
readonly softwareVersion: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
380
|
+
readonly softwareVersionString: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
381
|
+
readonly manufacturingDate: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
382
|
+
readonly partNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
383
|
+
readonly productUrl: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
384
|
+
readonly productLabel: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
385
|
+
readonly serialNumber: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
386
|
+
readonly reachable: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
|
|
387
|
+
readonly uniqueId: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<string, any>;
|
|
388
|
+
readonly productAppearance: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
389
|
+
finish: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BridgedDeviceBasicInformation.ProductFinish>;
|
|
390
|
+
primaryColor: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/cluster").BridgedDeviceBasicInformation.Color | null>;
|
|
391
|
+
}>, any>;
|
|
392
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
|
|
393
|
+
readonly startUp: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
394
|
+
softwareVersion: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
395
|
+
}>, any>;
|
|
396
|
+
readonly shutDown: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
|
|
397
|
+
readonly leave: import("@project-chip/matter-node.js/cluster").OptionalEvent<void, any>;
|
|
398
|
+
readonly reachableChanged: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
399
|
+
reachableNewValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
|
|
400
|
+
}>, any>;
|
|
401
|
+
}>;
|
|
170
402
|
/**
|
|
171
403
|
* Creates a default BridgedDeviceBasicInformationClusterServer.
|
|
172
404
|
*
|
|
@@ -181,6 +413,144 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
181
413
|
* @param hardwareVersionString - The hardware version string of the device. Default is 'v.1.0.0'.
|
|
182
414
|
*/
|
|
183
415
|
createDefaultBridgedDeviceBasicInformationClusterServer(deviceName: string, serialNumber: string, vendorId: number, vendorName: string, productName: string, softwareVersion?: number, softwareVersionString?: string, hardwareVersion?: number, hardwareVersionString?: string): void;
|
|
416
|
+
/**
|
|
417
|
+
* Get a default Electrical Measurement Cluster Server.
|
|
418
|
+
*
|
|
419
|
+
* @param voltage - The RMS voltage value.
|
|
420
|
+
* @param current - The RMS current value.
|
|
421
|
+
* @param power - The active power value.
|
|
422
|
+
* @param consumption - The total active power consumption value.
|
|
423
|
+
*/
|
|
424
|
+
getDefaultElectricalMeasurementClusterServer(voltage?: number, current?: number, power?: number, consumption?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
425
|
+
readonly measurementType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
426
|
+
readonly dcVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
427
|
+
readonly dcVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
428
|
+
readonly dcVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
429
|
+
readonly dcCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
430
|
+
readonly dcCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
431
|
+
readonly dcCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
432
|
+
readonly dcPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
433
|
+
readonly dcPowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
434
|
+
readonly dcPowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
435
|
+
readonly dcVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
436
|
+
readonly dcVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
437
|
+
readonly dcCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
438
|
+
readonly dcCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
439
|
+
readonly dcPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
440
|
+
readonly dcPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
441
|
+
readonly acFrequency: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
442
|
+
readonly acFrequencyMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
443
|
+
readonly acFrequencyMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
444
|
+
readonly neutralCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
445
|
+
readonly totalActivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
446
|
+
readonly totalReactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
447
|
+
readonly totalApparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
448
|
+
readonly measured1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
449
|
+
readonly measured3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
450
|
+
readonly measured5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
451
|
+
readonly measured7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
452
|
+
readonly measured9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
453
|
+
readonly measured11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
454
|
+
readonly measuredPhase1StHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
455
|
+
readonly measuredPhase3RdHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
456
|
+
readonly measuredPhase5ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
457
|
+
readonly measuredPhase7ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
458
|
+
readonly measuredPhase9ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
459
|
+
readonly measuredPhase11ThHarmonicCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
460
|
+
readonly acFrequencyMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
461
|
+
readonly acFrequencyDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
462
|
+
readonly powerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
463
|
+
readonly powerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
464
|
+
readonly harmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
465
|
+
readonly phaseHarmonicCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
466
|
+
readonly instantaneousVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
467
|
+
readonly instantaneousLineCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
468
|
+
readonly instantaneousActiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
469
|
+
readonly instantaneousReactiveCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
470
|
+
readonly instantaneousPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
471
|
+
readonly rmsVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
472
|
+
readonly rmsVoltageMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
473
|
+
readonly rmsVoltageMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
474
|
+
readonly rmsCurrent: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
475
|
+
readonly rmsCurrentMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
476
|
+
readonly rmsCurrentMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
477
|
+
readonly activePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
478
|
+
readonly activePowerMin: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
479
|
+
readonly activePowerMax: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
480
|
+
readonly reactivePower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
481
|
+
readonly apparentPower: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
482
|
+
readonly acPowerFactor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
483
|
+
readonly averageRmsVoltageMeasurementPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
484
|
+
readonly averageRmsUnderVoltageCounter: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
485
|
+
readonly rmsExtremeOverVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
486
|
+
readonly rmsExtremeUnderVoltagePeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
487
|
+
readonly rmsVoltageSagPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
488
|
+
readonly rmsVoltageSwellPeriod: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
489
|
+
readonly acVoltageMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
490
|
+
readonly acVoltageDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
491
|
+
readonly acCurrentMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
492
|
+
readonly acCurrentDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
493
|
+
readonly acPowerMultiplier: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
494
|
+
readonly acPowerDivisor: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
495
|
+
readonly dcOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
496
|
+
readonly dcVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
497
|
+
readonly dcCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
498
|
+
readonly acOverloadAlarmsMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
499
|
+
readonly acVoltageOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
500
|
+
readonly acCurrentOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
501
|
+
readonly acPowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
502
|
+
readonly acReactivePowerOverload: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
503
|
+
readonly averageRmsOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
504
|
+
readonly averageRmsUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
505
|
+
readonly rmsExtremeOverVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
506
|
+
readonly rmsExtremeUnderVoltage: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
507
|
+
readonly rmsVoltageSag: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
508
|
+
readonly rmsVoltageSwell: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
509
|
+
readonly lineCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
510
|
+
readonly activeCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
511
|
+
readonly reactiveCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
512
|
+
readonly rmsVoltagePhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
513
|
+
readonly rmsVoltageMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
514
|
+
readonly rmsVoltageMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
515
|
+
readonly rmsCurrentPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
516
|
+
readonly rmsCurrentMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
517
|
+
readonly rmsCurrentMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
518
|
+
readonly activePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
519
|
+
readonly activePowerMinPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
520
|
+
readonly activePowerMaxPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
521
|
+
readonly reactivePowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
522
|
+
readonly apparentPowerPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
523
|
+
readonly powerFactorPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
524
|
+
readonly averageRmsVoltageMeasurementPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
525
|
+
readonly averageRmsOverVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
526
|
+
readonly averageRmsUnderVoltageCounterPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
527
|
+
readonly rmsExtremeOverVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
528
|
+
readonly rmsExtremeUnderVoltagePeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
529
|
+
readonly rmsVoltageSagPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
530
|
+
readonly rmsVoltageSwellPeriodPhaseB: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
531
|
+
readonly lineCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
532
|
+
readonly activeCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
533
|
+
readonly reactiveCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
534
|
+
readonly rmsVoltagePhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
535
|
+
readonly rmsVoltageMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
536
|
+
readonly rmsVoltageMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
537
|
+
readonly rmsCurrentPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
538
|
+
readonly rmsCurrentMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
539
|
+
readonly rmsCurrentMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
540
|
+
readonly activePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
541
|
+
readonly activePowerMinPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
542
|
+
readonly activePowerMaxPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
543
|
+
readonly reactivePowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
544
|
+
readonly apparentPowerPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
545
|
+
readonly powerFactorPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
546
|
+
readonly averageRmsVoltageMeasurementPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
547
|
+
readonly averageRmsOverVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
548
|
+
readonly averageRmsUnderVoltageCounterPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
549
|
+
readonly rmsExtremeOverVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
550
|
+
readonly rmsExtremeUnderVoltagePeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
551
|
+
readonly rmsVoltageSagPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
552
|
+
readonly rmsVoltageSwellPeriodPhaseC: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
553
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
|
|
184
554
|
/**
|
|
185
555
|
* Creates a default Electrical Measurement Cluster Server.
|
|
186
556
|
*
|
|
@@ -198,19 +568,216 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
198
568
|
*
|
|
199
569
|
* @returns void
|
|
200
570
|
*/
|
|
201
|
-
|
|
571
|
+
createDefaultDummyThreadNetworkDiagnosticsClusterServer(): void;
|
|
572
|
+
/**
|
|
573
|
+
* Get a default OnOff cluster server.
|
|
574
|
+
*
|
|
575
|
+
* @param onOff - The initial state of the OnOff cluster (default: false).
|
|
576
|
+
*/
|
|
577
|
+
getDefaultOnOffClusterServer(onOff?: boolean): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
578
|
+
readonly onOff: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
|
|
579
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
580
|
+
readonly levelControlForLighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
581
|
+
}>>, {}>;
|
|
202
582
|
/**
|
|
203
583
|
* Creates a default OnOff cluster server.
|
|
204
584
|
*
|
|
205
585
|
* @param onOff - The initial state of the OnOff cluster (default: false).
|
|
206
586
|
*/
|
|
207
587
|
createDefaultOnOffClusterServer(onOff?: boolean): void;
|
|
588
|
+
/**
|
|
589
|
+
* Get a default level control cluster server.
|
|
590
|
+
*
|
|
591
|
+
* @param currentLevel - The current level (default: 0).
|
|
592
|
+
*/
|
|
593
|
+
getDefaultLevelControlClusterServer(currentLevel?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
594
|
+
readonly currentLevel: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
595
|
+
readonly minLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
596
|
+
readonly maxLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
597
|
+
readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
598
|
+
executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
599
|
+
coupleColorTempToLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
600
|
+
}>, any>;
|
|
601
|
+
readonly onOffTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
602
|
+
readonly onLevel: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
|
|
603
|
+
readonly onTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
604
|
+
readonly offTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
605
|
+
readonly defaultMoveRate: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
606
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
607
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
608
|
+
readonly lighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
609
|
+
readonly frequency: import("@project-chip/matter.js/schema").BitFlag;
|
|
610
|
+
}>>, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
611
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
612
|
+
readonly lighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
613
|
+
readonly frequency: import("@project-chip/matter.js/schema").BitFlag;
|
|
614
|
+
}>> & Omit<{}, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
615
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
616
|
+
readonly lighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
617
|
+
readonly frequency: import("@project-chip/matter.js/schema").BitFlag;
|
|
618
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
619
|
+
readonly currentLevel: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
620
|
+
readonly minLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
621
|
+
readonly maxLevel: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
622
|
+
readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
623
|
+
executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
624
|
+
coupleColorTempToLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
625
|
+
}>, any>;
|
|
626
|
+
readonly onOffTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
627
|
+
readonly onLevel: import("@project-chip/matter-node.js/cluster").WritableAttribute<number | null, any>;
|
|
628
|
+
readonly onTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
629
|
+
readonly offTransitionTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
630
|
+
readonly defaultMoveRate: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
631
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
632
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
633
|
+
readonly lighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
634
|
+
readonly frequency: import("@project-chip/matter.js/schema").BitFlag;
|
|
635
|
+
}>>, "currentLevel" | "minLevel" | "maxLevel" | "options" | "onOffTransitionTime" | "onLevel" | "onTransitionTime" | "offTransitionTime" | "defaultMoveRate" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
636
|
+
readonly onOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
637
|
+
readonly lighting: import("@project-chip/matter.js/schema").BitFlag;
|
|
638
|
+
readonly frequency: import("@project-chip/matter.js/schema").BitFlag;
|
|
639
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
208
640
|
/**
|
|
209
641
|
* Creates a default level control cluster server.
|
|
210
642
|
*
|
|
211
643
|
* @param currentLevel - The current level (default: 0).
|
|
212
644
|
*/
|
|
213
645
|
createDefaultLevelControlClusterServer(currentLevel?: number): void;
|
|
646
|
+
/**
|
|
647
|
+
* Get a default color control cluster server.
|
|
648
|
+
*
|
|
649
|
+
* @param currentHue - The current hue value.
|
|
650
|
+
* @param currentSaturation - The current saturation value.
|
|
651
|
+
* @param colorTemperatureMireds - The color temperature in mireds.
|
|
652
|
+
* @param colorTempPhysicalMinMireds - The physical minimum color temperature in mireds.
|
|
653
|
+
* @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
|
|
654
|
+
*/
|
|
655
|
+
getDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
656
|
+
readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
657
|
+
readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
|
|
658
|
+
readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
|
|
659
|
+
readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
|
|
660
|
+
readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
661
|
+
executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
662
|
+
}>, any>;
|
|
663
|
+
readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
|
|
664
|
+
readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
665
|
+
readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
666
|
+
readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
667
|
+
readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
668
|
+
readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
669
|
+
readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
670
|
+
readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
671
|
+
readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
672
|
+
readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
673
|
+
readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
674
|
+
readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
675
|
+
readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
676
|
+
readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
677
|
+
readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
678
|
+
readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
679
|
+
readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
680
|
+
readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
681
|
+
readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
682
|
+
readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
683
|
+
readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
684
|
+
readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
685
|
+
readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
686
|
+
readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
687
|
+
readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
688
|
+
readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
689
|
+
readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
690
|
+
readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
691
|
+
readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
692
|
+
readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
693
|
+
readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
694
|
+
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
695
|
+
hs: import("@project-chip/matter.js/schema").BitFlag;
|
|
696
|
+
ehue: import("@project-chip/matter.js/schema").BitFlag;
|
|
697
|
+
cl: import("@project-chip/matter.js/schema").BitFlag;
|
|
698
|
+
xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
699
|
+
ct: import("@project-chip/matter.js/schema").BitFlag;
|
|
700
|
+
}>, any>;
|
|
701
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
702
|
+
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
703
|
+
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
704
|
+
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
705
|
+
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
706
|
+
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
707
|
+
}>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities"> & Omit<{
|
|
708
|
+
readonly currentHue: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
709
|
+
readonly currentSaturation: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
710
|
+
} & {
|
|
711
|
+
readonly colorTemperatureMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
712
|
+
readonly colorTempPhysicalMinMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
713
|
+
readonly colorTempPhysicalMaxMireds: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
714
|
+
readonly coupleColorTempToLevelMinMireds: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
715
|
+
readonly startUpColorTemperatureMireds: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
716
|
+
}, "remainingTime" | "options" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
717
|
+
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
718
|
+
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
719
|
+
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
720
|
+
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
721
|
+
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
722
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
723
|
+
readonly remainingTime: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
724
|
+
readonly driftCompensation: import("@project-chip/matter-node.js/cluster").OptionalAttribute<ColorControl.DriftCompensation, any>;
|
|
725
|
+
readonly compensationText: import("@project-chip/matter-node.js/cluster").OptionalAttribute<string, any>;
|
|
726
|
+
readonly colorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.ColorMode, any>;
|
|
727
|
+
readonly options: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
728
|
+
executeIfOff: import("@project-chip/matter.js/schema").BitFlag;
|
|
729
|
+
}>, any>;
|
|
730
|
+
readonly numberOfPrimaries: import("@project-chip/matter-node.js/cluster").FixedAttribute<number | null, any>;
|
|
731
|
+
readonly primary1X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
732
|
+
readonly primary1Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
733
|
+
readonly primary1Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
734
|
+
readonly primary2X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
735
|
+
readonly primary2Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
736
|
+
readonly primary2Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
737
|
+
readonly primary3X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
738
|
+
readonly primary3Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
739
|
+
readonly primary3Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
740
|
+
readonly primary4X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
741
|
+
readonly primary4Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
742
|
+
readonly primary4Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
743
|
+
readonly primary5X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
744
|
+
readonly primary5Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
745
|
+
readonly primary5Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
746
|
+
readonly primary6X: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
747
|
+
readonly primary6Y: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
748
|
+
readonly primary6Intensity: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number | null, any>;
|
|
749
|
+
readonly whitePointX: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
750
|
+
readonly whitePointY: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
751
|
+
readonly colorPointRx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
752
|
+
readonly colorPointRy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
753
|
+
readonly colorPointRIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
754
|
+
readonly colorPointGx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
755
|
+
readonly colorPointGy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
756
|
+
readonly colorPointGIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
757
|
+
readonly colorPointBx: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
758
|
+
readonly colorPointBy: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
759
|
+
readonly colorPointBIntensity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
760
|
+
readonly enhancedColorMode: import("@project-chip/matter-node.js/cluster").Attribute<ColorControl.EnhancedColorMode, any>;
|
|
761
|
+
readonly colorCapabilities: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
762
|
+
hs: import("@project-chip/matter.js/schema").BitFlag;
|
|
763
|
+
ehue: import("@project-chip/matter.js/schema").BitFlag;
|
|
764
|
+
cl: import("@project-chip/matter.js/schema").BitFlag;
|
|
765
|
+
xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
766
|
+
ct: import("@project-chip/matter.js/schema").BitFlag;
|
|
767
|
+
}>, any>;
|
|
768
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
769
|
+
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
770
|
+
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
771
|
+
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
772
|
+
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
773
|
+
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
774
|
+
}>>, "remainingTime" | "options" | "currentHue" | "currentSaturation" | "colorTemperatureMireds" | "colorTempPhysicalMinMireds" | "colorTempPhysicalMaxMireds" | "coupleColorTempToLevelMinMireds" | "startUpColorTemperatureMireds" | "driftCompensation" | "compensationText" | "colorMode" | "numberOfPrimaries" | "primary1X" | "primary1Y" | "primary1Intensity" | "primary2X" | "primary2Y" | "primary2Intensity" | "primary3X" | "primary3Y" | "primary3Intensity" | "primary4X" | "primary4Y" | "primary4Intensity" | "primary5X" | "primary5Y" | "primary5Intensity" | "primary6X" | "primary6Y" | "primary6Intensity" | "whitePointX" | "whitePointY" | "colorPointRx" | "colorPointRy" | "colorPointRIntensity" | "colorPointGx" | "colorPointGy" | "colorPointGIntensity" | "colorPointBx" | "colorPointBy" | "colorPointBIntensity" | "enhancedColorMode" | "colorCapabilities" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
775
|
+
readonly hueSaturation: import("@project-chip/matter.js/schema").BitFlag;
|
|
776
|
+
readonly enhancedHue: import("@project-chip/matter.js/schema").BitFlag;
|
|
777
|
+
readonly colorLoop: import("@project-chip/matter.js/schema").BitFlag;
|
|
778
|
+
readonly xy: import("@project-chip/matter.js/schema").BitFlag;
|
|
779
|
+
readonly colorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
780
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
214
781
|
/**
|
|
215
782
|
* Creates a default color control cluster server.
|
|
216
783
|
*
|
|
@@ -221,6 +788,121 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
221
788
|
* @param colorTempPhysicalMaxMireds - The physical maximum color temperature in mireds.
|
|
222
789
|
*/
|
|
223
790
|
createDefaultColorControlClusterServer(currentHue?: number, currentSaturation?: number, colorTemperatureMireds?: number, colorTempPhysicalMinMireds?: number, colorTempPhysicalMaxMireds?: number): void;
|
|
791
|
+
/**
|
|
792
|
+
* Get a default window covering cluster server.
|
|
793
|
+
*
|
|
794
|
+
* @param positionPercent100ths - The position percentage in 100ths (0-10000). Defaults to 0.
|
|
795
|
+
*/
|
|
796
|
+
getDefaultWindowCoveringClusterServer(positionPercent100ths?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
797
|
+
readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
|
|
798
|
+
readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
799
|
+
operational: import("@project-chip/matter.js/schema").BitFlag;
|
|
800
|
+
onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
|
|
801
|
+
liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
|
|
802
|
+
liftPositionAware: import("@project-chip/matter.js/schema").BitFlag;
|
|
803
|
+
tiltPositionAware: import("@project-chip/matter.js/schema").BitFlag;
|
|
804
|
+
liftEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
|
|
805
|
+
tiltEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
|
|
806
|
+
}>, any>;
|
|
807
|
+
readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
808
|
+
global: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
809
|
+
lift: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
810
|
+
tilt: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
811
|
+
}>, any>;
|
|
812
|
+
readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
|
|
813
|
+
readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
814
|
+
motorDirectionReversed: import("@project-chip/matter.js/schema").BitFlag;
|
|
815
|
+
calibrationMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
816
|
+
maintenanceMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
817
|
+
ledFeedback: import("@project-chip/matter.js/schema").BitFlag;
|
|
818
|
+
}>, any>;
|
|
819
|
+
readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
820
|
+
remoteLockout: import("@project-chip/matter.js/schema").BitFlag;
|
|
821
|
+
tamperDetection: import("@project-chip/matter.js/schema").BitFlag;
|
|
822
|
+
failedCommunication: import("@project-chip/matter.js/schema").BitFlag;
|
|
823
|
+
positionFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
824
|
+
thermalProtection: import("@project-chip/matter.js/schema").BitFlag;
|
|
825
|
+
obstacleDetected: import("@project-chip/matter.js/schema").BitFlag;
|
|
826
|
+
power: import("@project-chip/matter.js/schema").BitFlag;
|
|
827
|
+
stopInput: import("@project-chip/matter.js/schema").BitFlag;
|
|
828
|
+
motorJammed: import("@project-chip/matter.js/schema").BitFlag;
|
|
829
|
+
hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
830
|
+
manualOperation: import("@project-chip/matter.js/schema").BitFlag;
|
|
831
|
+
protection: import("@project-chip/matter.js/schema").BitFlag;
|
|
832
|
+
}>, any>;
|
|
833
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
834
|
+
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
835
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
836
|
+
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
837
|
+
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
838
|
+
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
839
|
+
}>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus"> & Omit<{
|
|
840
|
+
readonly physicalClosedLimitLift: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
841
|
+
readonly currentPositionLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
842
|
+
readonly installedOpenLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
843
|
+
readonly installedClosedLimitLift: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
844
|
+
} & {
|
|
845
|
+
readonly numberOfActuationsLift: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
846
|
+
} & {
|
|
847
|
+
readonly currentPositionLiftPercentage: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
848
|
+
readonly targetPositionLiftPercent100ths: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
849
|
+
readonly currentPositionLiftPercent100ths: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
850
|
+
}, "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
851
|
+
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
852
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
853
|
+
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
854
|
+
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
855
|
+
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
856
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
857
|
+
readonly type: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.WindowCoveringType, any>;
|
|
858
|
+
readonly configStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
859
|
+
operational: import("@project-chip/matter.js/schema").BitFlag;
|
|
860
|
+
onlineReserved: import("@project-chip/matter.js/schema").BitFlag;
|
|
861
|
+
liftMovementReversed: import("@project-chip/matter.js/schema").BitFlag;
|
|
862
|
+
liftPositionAware: import("@project-chip/matter.js/schema").BitFlag;
|
|
863
|
+
tiltPositionAware: import("@project-chip/matter.js/schema").BitFlag;
|
|
864
|
+
liftEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
|
|
865
|
+
tiltEncoderControlled: import("@project-chip/matter.js/schema").BitFlag;
|
|
866
|
+
}>, any>;
|
|
867
|
+
readonly operationalStatus: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
868
|
+
global: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
869
|
+
lift: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
870
|
+
tilt: import("@project-chip/matter.js/schema").BitFieldEnum<WindowCovering.MovementStatus>;
|
|
871
|
+
}>, any>;
|
|
872
|
+
readonly endProductType: import("@project-chip/matter-node.js/cluster").FixedAttribute<WindowCovering.EndProductType, any>;
|
|
873
|
+
readonly mode: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
874
|
+
motorDirectionReversed: import("@project-chip/matter.js/schema").BitFlag;
|
|
875
|
+
calibrationMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
876
|
+
maintenanceMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
877
|
+
ledFeedback: import("@project-chip/matter.js/schema").BitFlag;
|
|
878
|
+
}>, any>;
|
|
879
|
+
readonly safetyStatus: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
880
|
+
remoteLockout: import("@project-chip/matter.js/schema").BitFlag;
|
|
881
|
+
tamperDetection: import("@project-chip/matter.js/schema").BitFlag;
|
|
882
|
+
failedCommunication: import("@project-chip/matter.js/schema").BitFlag;
|
|
883
|
+
positionFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
884
|
+
thermalProtection: import("@project-chip/matter.js/schema").BitFlag;
|
|
885
|
+
obstacleDetected: import("@project-chip/matter.js/schema").BitFlag;
|
|
886
|
+
power: import("@project-chip/matter.js/schema").BitFlag;
|
|
887
|
+
stopInput: import("@project-chip/matter.js/schema").BitFlag;
|
|
888
|
+
motorJammed: import("@project-chip/matter.js/schema").BitFlag;
|
|
889
|
+
hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
890
|
+
manualOperation: import("@project-chip/matter.js/schema").BitFlag;
|
|
891
|
+
protection: import("@project-chip/matter.js/schema").BitFlag;
|
|
892
|
+
}>, any>;
|
|
893
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
894
|
+
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
895
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
896
|
+
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
897
|
+
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
898
|
+
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
899
|
+
}>>, "physicalClosedLimitLift" | "currentPositionLift" | "numberOfActuationsLift" | "currentPositionLiftPercentage" | "targetPositionLiftPercent100ths" | "currentPositionLiftPercent100ths" | "installedOpenLimitLift" | "installedClosedLimitLift" | "type" | "configStatus" | "operationalStatus" | "endProductType" | "mode" | "safetyStatus" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
900
|
+
readonly lift: import("@project-chip/matter.js/schema").BitFlag;
|
|
901
|
+
readonly tilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
902
|
+
readonly positionAwareLift: import("@project-chip/matter.js/schema").BitFlag;
|
|
903
|
+
readonly absolutePosition: import("@project-chip/matter.js/schema").BitFlag;
|
|
904
|
+
readonly positionAwareTilt: import("@project-chip/matter.js/schema").BitFlag;
|
|
905
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
224
906
|
/**
|
|
225
907
|
* Creates a default window covering cluster server.
|
|
226
908
|
*
|
|
@@ -254,18 +936,168 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
254
936
|
* @param position - The position to set, specified as a number.
|
|
255
937
|
*/
|
|
256
938
|
setWindowCoveringTargetAndCurrentPosition(position: number): void;
|
|
939
|
+
/**
|
|
940
|
+
* Get a default door lock cluster server.
|
|
941
|
+
*
|
|
942
|
+
* @remarks
|
|
943
|
+
* This method adds a cluster server for a door lock cluster with default settings.
|
|
944
|
+
*
|
|
945
|
+
*/
|
|
946
|
+
getDefaultDoorLockClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
947
|
+
readonly lockState: import("@project-chip/matter-node.js/cluster").Attribute<DoorLock.LockState | null, any>;
|
|
948
|
+
readonly lockType: import("@project-chip/matter-node.js/cluster").Attribute<DoorLock.LockType, any>;
|
|
949
|
+
readonly actuatorEnabled: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
|
|
950
|
+
readonly language: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<string, any>;
|
|
951
|
+
readonly ledSettings: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
952
|
+
readonly autoRelockTime: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
953
|
+
readonly soundVolume: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
954
|
+
readonly operatingMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<DoorLock.OperatingMode, any>;
|
|
955
|
+
readonly supportedOperatingModes: import("@project-chip/matter-node.js/cluster").FixedAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
956
|
+
normal: import("@project-chip/matter.js/schema").BitFlag;
|
|
957
|
+
vacation: import("@project-chip/matter.js/schema").BitFlag;
|
|
958
|
+
privacy: import("@project-chip/matter.js/schema").BitFlag;
|
|
959
|
+
noRemoteLockUnlock: import("@project-chip/matter.js/schema").BitFlag;
|
|
960
|
+
passage: import("@project-chip/matter.js/schema").BitFlag;
|
|
961
|
+
}>, any>;
|
|
962
|
+
readonly defaultConfigurationRegister: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
963
|
+
enableLocalProgrammingEnabled: import("@project-chip/matter.js/schema").BitFlag;
|
|
964
|
+
keypadInterfaceDefaultAccessEnabled: import("@project-chip/matter.js/schema").BitFlag;
|
|
965
|
+
remoteInterfaceDefaultAccessIsEnabled: import("@project-chip/matter.js/schema").BitFlag;
|
|
966
|
+
soundEnabled: import("@project-chip/matter.js/schema").BitFlag;
|
|
967
|
+
autoRelockTimeSet: import("@project-chip/matter.js/schema").BitFlag;
|
|
968
|
+
ledSettingsSet: import("@project-chip/matter.js/schema").BitFlag;
|
|
969
|
+
}>, any>;
|
|
970
|
+
readonly enableLocalProgramming: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
971
|
+
readonly enableOneTouchLocking: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
972
|
+
readonly enableInsideStatusLed: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
973
|
+
readonly enablePrivacyModeButton: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<boolean, any>;
|
|
974
|
+
readonly localProgrammingFeatures: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
975
|
+
addUsersCredentialsSchedulesLocally: import("@project-chip/matter.js/schema").BitFlag;
|
|
976
|
+
modifyUsersCredentialsSchedulesLocally: import("@project-chip/matter.js/schema").BitFlag;
|
|
977
|
+
clearUsersCredentialsSchedulesLocally: import("@project-chip/matter.js/schema").BitFlag;
|
|
978
|
+
adjustLockSettingsLocally: import("@project-chip/matter.js/schema").BitFlag;
|
|
979
|
+
}>, any>;
|
|
980
|
+
readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
981
|
+
lockingMechanismJammed: import("@project-chip/matter.js/schema").BitFlag;
|
|
982
|
+
lockResetToFactoryDefaults: import("@project-chip/matter.js/schema").BitFlag;
|
|
983
|
+
reserved: import("@project-chip/matter.js/schema").BitFlag;
|
|
984
|
+
rfModulePowerCycled: import("@project-chip/matter.js/schema").BitFlag;
|
|
985
|
+
tamperAlarmWrongCodeEntryLimit: import("@project-chip/matter.js/schema").BitFlag;
|
|
986
|
+
tamperAlarmFrontEscutcheonRemovedFromMain: import("@project-chip/matter.js/schema").BitFlag;
|
|
987
|
+
forcedDoorOpenUnderDoorLockedCondition: import("@project-chip/matter.js/schema").BitFlag;
|
|
988
|
+
}>, any>;
|
|
989
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
990
|
+
readonly pinCredential: import("@project-chip/matter.js/schema").BitFlag;
|
|
991
|
+
readonly rfidCredential: import("@project-chip/matter.js/schema").BitFlag;
|
|
992
|
+
readonly fingerCredentials: import("@project-chip/matter.js/schema").BitFlag;
|
|
993
|
+
readonly logging: import("@project-chip/matter.js/schema").BitFlag;
|
|
994
|
+
readonly weekDayAccessSchedules: import("@project-chip/matter.js/schema").BitFlag;
|
|
995
|
+
readonly doorPositionSensor: import("@project-chip/matter.js/schema").BitFlag;
|
|
996
|
+
readonly faceCredentials: import("@project-chip/matter.js/schema").BitFlag;
|
|
997
|
+
readonly credentialOverTheAirAccess: import("@project-chip/matter.js/schema").BitFlag;
|
|
998
|
+
readonly user: import("@project-chip/matter.js/schema").BitFlag;
|
|
999
|
+
readonly notification: import("@project-chip/matter.js/schema").BitFlag;
|
|
1000
|
+
readonly yearDayAccessSchedules: import("@project-chip/matter.js/schema").BitFlag;
|
|
1001
|
+
readonly holidaySchedules: import("@project-chip/matter.js/schema").BitFlag;
|
|
1002
|
+
}>>, {
|
|
1003
|
+
readonly doorLockAlarm: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1004
|
+
alarmCode: import("@project-chip/matter.js/tlv").FieldType<DoorLock.AlarmCode>;
|
|
1005
|
+
}>, any>;
|
|
1006
|
+
readonly lockOperation: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1007
|
+
lockOperationType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.LockOperationType>;
|
|
1008
|
+
operationSource: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationSource>;
|
|
1009
|
+
userIndex: import("@project-chip/matter.js/tlv").FieldType<number | null>;
|
|
1010
|
+
fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex | null>;
|
|
1011
|
+
sourceNode: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").NodeId | null>;
|
|
1012
|
+
credentials: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1013
|
+
credentialType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.CredentialType>;
|
|
1014
|
+
credentialIndex: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1015
|
+
}>[] | null>;
|
|
1016
|
+
}>, any>;
|
|
1017
|
+
readonly lockOperationError: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1018
|
+
lockOperationType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.LockOperationType>;
|
|
1019
|
+
operationSource: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationSource>;
|
|
1020
|
+
operationError: import("@project-chip/matter.js/tlv").FieldType<DoorLock.OperationError>;
|
|
1021
|
+
userIndex: import("@project-chip/matter.js/tlv").FieldType<number | null>;
|
|
1022
|
+
fabricIndex: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").FabricIndex | null>;
|
|
1023
|
+
sourceNode: import("@project-chip/matter.js/tlv").FieldType<import("@project-chip/matter-node.js/datatype").NodeId | null>;
|
|
1024
|
+
credentials: import("@project-chip/matter.js/tlv").OptionalFieldType<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1025
|
+
credentialType: import("@project-chip/matter.js/tlv").FieldType<DoorLock.CredentialType>;
|
|
1026
|
+
credentialIndex: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1027
|
+
}>[] | null>;
|
|
1028
|
+
}>, any>;
|
|
1029
|
+
}>;
|
|
257
1030
|
/**
|
|
258
1031
|
* Creates a default door lock cluster server.
|
|
259
1032
|
*
|
|
260
1033
|
* @remarks
|
|
261
1034
|
* This method adds a cluster server for a door lock cluster with default settings.
|
|
262
1035
|
*
|
|
263
|
-
* @example
|
|
264
|
-
* ```typescript
|
|
265
|
-
* createDefaultDoorLockClusterServer();
|
|
266
|
-
* ```
|
|
267
1036
|
*/
|
|
268
1037
|
createDefaultDoorLockClusterServer(): void;
|
|
1038
|
+
/**
|
|
1039
|
+
* Get a default switch cluster server.
|
|
1040
|
+
*
|
|
1041
|
+
* @remarks
|
|
1042
|
+
* This method adds a cluster server with default switch features and configurations.
|
|
1043
|
+
*/
|
|
1044
|
+
getDefaultSwitchClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
1045
|
+
readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
1046
|
+
readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
|
|
1047
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1048
|
+
readonly latchingSwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1049
|
+
readonly momentarySwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1050
|
+
readonly momentarySwitchRelease: import("@project-chip/matter.js/schema").BitFlag;
|
|
1051
|
+
readonly momentarySwitchLongPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1052
|
+
readonly momentarySwitchMultiPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1053
|
+
}>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "numberOfPositions" | "currentPosition"> & Omit<{
|
|
1054
|
+
readonly multiPressMax: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
1055
|
+
}, "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1056
|
+
readonly latchingSwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1057
|
+
readonly momentarySwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1058
|
+
readonly momentarySwitchRelease: import("@project-chip/matter.js/schema").BitFlag;
|
|
1059
|
+
readonly momentarySwitchLongPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1060
|
+
readonly momentarySwitchMultiPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1061
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
1062
|
+
readonly numberOfPositions: import("@project-chip/matter-node.js/cluster").FixedAttribute<number, any>;
|
|
1063
|
+
readonly currentPosition: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
|
|
1064
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1065
|
+
readonly latchingSwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1066
|
+
readonly momentarySwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1067
|
+
readonly momentarySwitchRelease: import("@project-chip/matter.js/schema").BitFlag;
|
|
1068
|
+
readonly momentarySwitchLongPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1069
|
+
readonly momentarySwitchMultiPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1070
|
+
}>>, "multiPressMax" | "numberOfPositions" | "currentPosition" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1071
|
+
readonly latchingSwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1072
|
+
readonly momentarySwitch: import("@project-chip/matter.js/schema").BitFlag;
|
|
1073
|
+
readonly momentarySwitchRelease: import("@project-chip/matter.js/schema").BitFlag;
|
|
1074
|
+
readonly momentarySwitchLongPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1075
|
+
readonly momentarySwitchMultiPress: import("@project-chip/matter.js/schema").BitFlag;
|
|
1076
|
+
}>>, Pick<{}, never> & Omit<{
|
|
1077
|
+
readonly multiPressOngoing: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1078
|
+
newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1079
|
+
currentNumberOfPressesCounted: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1080
|
+
}>, any>;
|
|
1081
|
+
readonly multiPressComplete: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1082
|
+
previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1083
|
+
totalNumberOfPressesCounted: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1084
|
+
}>, any>;
|
|
1085
|
+
} & {
|
|
1086
|
+
readonly initialPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1087
|
+
newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1088
|
+
}>, any>;
|
|
1089
|
+
} & {
|
|
1090
|
+
readonly longPress: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1091
|
+
newPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1092
|
+
}>, any>;
|
|
1093
|
+
readonly longRelease: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1094
|
+
previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1095
|
+
}>, any>;
|
|
1096
|
+
} & {
|
|
1097
|
+
readonly shortRelease: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1098
|
+
previousPosition: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1099
|
+
}>, any>;
|
|
1100
|
+
}, never> & Omit<{}, "multiPressOngoing" | "multiPressComplete" | "initialPress" | "longPress" | "longRelease" | "shortRelease">>;
|
|
269
1101
|
/**
|
|
270
1102
|
* Creates a default switch cluster server.
|
|
271
1103
|
*
|
|
@@ -273,36 +1105,120 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
273
1105
|
* This method adds a cluster server with default switch features and configurations.
|
|
274
1106
|
*/
|
|
275
1107
|
createDefaultSwitchClusterServer(): void;
|
|
1108
|
+
/**
|
|
1109
|
+
* Get a default occupancy sensing cluster server.
|
|
1110
|
+
*
|
|
1111
|
+
* @param occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
|
|
1112
|
+
*/
|
|
1113
|
+
getDefaultOccupancySensingClusterServer(occupied?: boolean): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1114
|
+
readonly occupancy: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1115
|
+
occupied: import("@project-chip/matter.js/schema").BitFlag;
|
|
1116
|
+
}>, any>;
|
|
1117
|
+
readonly occupancySensorType: import("@project-chip/matter-node.js/cluster").Attribute<OccupancySensing.OccupancySensorType, any>;
|
|
1118
|
+
readonly occupancySensorTypeBitmap: import("@project-chip/matter-node.js/cluster").Attribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1119
|
+
pir: import("@project-chip/matter.js/schema").BitFlag;
|
|
1120
|
+
ultrasonic: import("@project-chip/matter.js/schema").BitFlag;
|
|
1121
|
+
physicalContact: import("@project-chip/matter.js/schema").BitFlag;
|
|
1122
|
+
}>, any>;
|
|
1123
|
+
readonly pirOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1124
|
+
readonly pirUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1125
|
+
readonly pirUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1126
|
+
readonly ultrasonicOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1127
|
+
readonly ultrasonicUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1128
|
+
readonly ultrasonicUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1129
|
+
readonly physicalContactOccupiedToUnoccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
1130
|
+
readonly physicalContactUnoccupiedToOccupiedDelay: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
1131
|
+
readonly physicalContactUnoccupiedToOccupiedThreshold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1132
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
|
|
276
1133
|
/**
|
|
277
1134
|
* Creates a default occupancy sensing cluster server.
|
|
278
1135
|
*
|
|
279
1136
|
* @param occupied - A boolean indicating whether the occupancy is occupied or not. Default is false.
|
|
280
1137
|
*/
|
|
281
1138
|
createDefaultOccupancySensingClusterServer(occupied?: boolean): void;
|
|
1139
|
+
/**
|
|
1140
|
+
* Get a default Illuminance Measurement Cluster Server.
|
|
1141
|
+
*
|
|
1142
|
+
* @param measuredValue - The measured value of illuminance.
|
|
1143
|
+
*/
|
|
1144
|
+
getDefaultIlluminanceMeasurementClusterServer(measuredValue?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1145
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1146
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1147
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1148
|
+
readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1149
|
+
readonly lightSensorType: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1150
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
|
|
282
1151
|
/**
|
|
283
1152
|
* Creates a default Illuminance Measurement Cluster Server.
|
|
284
1153
|
*
|
|
285
1154
|
* @param measuredValue - The measured value of illuminance.
|
|
286
1155
|
*/
|
|
287
1156
|
createDefaultIlluminanceMeasurementClusterServer(measuredValue?: number): void;
|
|
1157
|
+
/**
|
|
1158
|
+
* Get a default temperature measurement cluster server.
|
|
1159
|
+
*
|
|
1160
|
+
* @param measuredValue - The measured value of the temperature.
|
|
1161
|
+
*/
|
|
1162
|
+
getDefaultTemperatureMeasurementClusterServer(measuredValue?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1163
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1164
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1165
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1166
|
+
readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1167
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
|
|
288
1168
|
/**
|
|
289
1169
|
* Creates a default temperature measurement cluster server.
|
|
290
1170
|
*
|
|
291
1171
|
* @param measuredValue - The measured value of the temperature.
|
|
292
1172
|
*/
|
|
293
1173
|
createDefaultTemperatureMeasurementClusterServer(measuredValue?: number): void;
|
|
1174
|
+
/**
|
|
1175
|
+
* Get a default RelativeHumidityMeasurementCluster server.
|
|
1176
|
+
*
|
|
1177
|
+
* @param measuredValue - The measured value of the relative humidity.
|
|
1178
|
+
*/
|
|
1179
|
+
getDefaultRelativeHumidityMeasurementClusterServer(measuredValue?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1180
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1181
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1182
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1183
|
+
readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1184
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {}>;
|
|
294
1185
|
/**
|
|
295
1186
|
* Creates a default RelativeHumidityMeasurementCluster server.
|
|
296
1187
|
*
|
|
297
1188
|
* @param measuredValue - The measured value of the relative humidity.
|
|
298
1189
|
*/
|
|
299
1190
|
createDefaultRelativeHumidityMeasurementClusterServer(measuredValue?: number): void;
|
|
1191
|
+
/**
|
|
1192
|
+
* Get a default Pressure Measurement Cluster Server.
|
|
1193
|
+
*
|
|
1194
|
+
* @param measuredValue - The measured value for the pressure.
|
|
1195
|
+
*/
|
|
1196
|
+
getDefaultPressureMeasurementClusterServer(measuredValue?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1197
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1198
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1199
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1200
|
+
readonly tolerance: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1201
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1202
|
+
readonly extended: import("@project-chip/matter.js/schema").BitFlag;
|
|
1203
|
+
}>>, {}>;
|
|
300
1204
|
/**
|
|
301
1205
|
* Creates a default Pressure Measurement Cluster Server.
|
|
302
1206
|
*
|
|
303
1207
|
* @param measuredValue - The measured value for the pressure.
|
|
304
1208
|
*/
|
|
305
1209
|
createDefaultPressureMeasurementClusterServer(measuredValue?: number): void;
|
|
1210
|
+
/**
|
|
1211
|
+
* Get a default boolean state cluster server.
|
|
1212
|
+
*
|
|
1213
|
+
* @param contact - Optional boolean value indicating the contact state. Defaults to `true` if not provided.
|
|
1214
|
+
*/
|
|
1215
|
+
getDefaultBooleanStateClusterServer(contact?: boolean): import("@project-chip/matter-node.js/cluster").ClusterServerObj<import("@project-chip/matter-node.js/util").Merge<{
|
|
1216
|
+
readonly stateValue: import("@project-chip/matter-node.js/cluster").Attribute<boolean, any>;
|
|
1217
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{}>>, {
|
|
1218
|
+
readonly stateChange: import("@project-chip/matter-node.js/cluster").OptionalEvent<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1219
|
+
stateValue: import("@project-chip/matter.js/tlv").FieldType<boolean>;
|
|
1220
|
+
}>, any>;
|
|
1221
|
+
}>;
|
|
306
1222
|
/**
|
|
307
1223
|
* Creates a default boolean state cluster server.
|
|
308
1224
|
*
|
|
@@ -344,18 +1260,284 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
344
1260
|
* @param endpointNumber - The endpoint number where to find the PowerSourceCluster.
|
|
345
1261
|
*/
|
|
346
1262
|
createDefaultPowerSourceConfigurationClusterServer(endpointNumber?: number): void;
|
|
1263
|
+
/**
|
|
1264
|
+
* Get a default air quality cluster server.
|
|
1265
|
+
*
|
|
1266
|
+
* @param airQuality The air quality type. Defaults to `AirQuality.AirQualityType.Unknown`.
|
|
1267
|
+
*/
|
|
1268
|
+
getDefaultAirQualityClusterServer(airQuality?: AirQuality.AirQualityType): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
1269
|
+
readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
|
|
1270
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1271
|
+
readonly fairAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1272
|
+
readonly moderateAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1273
|
+
readonly veryPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1274
|
+
readonly extremelyPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1275
|
+
}>>, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1276
|
+
readonly fairAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1277
|
+
readonly moderateAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1278
|
+
readonly veryPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1279
|
+
readonly extremelyPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1280
|
+
}>> & Omit<{
|
|
1281
|
+
readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
|
|
1282
|
+
}, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1283
|
+
readonly fairAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1284
|
+
readonly moderateAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1285
|
+
readonly veryPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1286
|
+
readonly extremelyPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1287
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
1288
|
+
readonly airQuality: import("@project-chip/matter-node.js/cluster").Attribute<AirQuality.AirQualityType, any>;
|
|
1289
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1290
|
+
readonly fairAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1291
|
+
readonly moderateAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1292
|
+
readonly veryPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1293
|
+
readonly extremelyPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1294
|
+
}>>, "airQuality" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1295
|
+
readonly fairAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1296
|
+
readonly moderateAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1297
|
+
readonly veryPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1298
|
+
readonly extremelyPoorAirQuality: import("@project-chip/matter.js/schema").BitFlag;
|
|
1299
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
347
1300
|
/**
|
|
348
1301
|
* Creates a default air quality cluster server.
|
|
349
1302
|
*
|
|
350
1303
|
* @param airQuality The air quality type. Defaults to `AirQuality.AirQualityType.Unknown`.
|
|
351
1304
|
*/
|
|
352
1305
|
createDefaultAirQualityClusterServer(airQuality?: AirQuality.AirQualityType): void;
|
|
1306
|
+
/**
|
|
1307
|
+
* Get a default TVOC measurement cluster server.
|
|
1308
|
+
*
|
|
1309
|
+
* @param measuredValue - The measured value for TVOC.
|
|
1310
|
+
*/
|
|
1311
|
+
getDefaultTvocMeasurementClusterServer(measuredValue?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
1312
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1313
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1314
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1315
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1316
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1317
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1318
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1319
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1320
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
|
|
1321
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1322
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1323
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1324
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1325
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1326
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1327
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1328
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1329
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1330
|
+
}>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1331
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1332
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1333
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1334
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1335
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1336
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1337
|
+
}>> & Omit<{
|
|
1338
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1339
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1340
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1341
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1342
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1343
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1344
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1345
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1346
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
|
|
1347
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1348
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1349
|
+
}, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1350
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1351
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1352
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1353
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1354
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1355
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1356
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
1357
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1358
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1359
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1360
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1361
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1362
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1363
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1364
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1365
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementUnitType, any>;
|
|
1366
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.MeasurementMediumType, any>;
|
|
1367
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TvocMeasurement.LevelValueType, any>;
|
|
1368
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1369
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1370
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1371
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1372
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1373
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1374
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1375
|
+
}>>, "measuredValue" | "minMeasuredValue" | "maxMeasuredValue" | "peakMeasuredValue" | "peakMeasuredValueWindow" | "averageMeasuredValue" | "averageMeasuredValueWindow" | "uncertainty" | "measurementUnit" | "measurementMedium" | "levelValue" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1376
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1377
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
1378
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1379
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
1380
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1381
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
1382
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
353
1383
|
/**
|
|
354
1384
|
* Creates a default TVOC measurement cluster server.
|
|
355
1385
|
*
|
|
356
1386
|
* @param measuredValue - The measured value for TVOC.
|
|
357
1387
|
*/
|
|
358
1388
|
createDefaultTvocMeasurementClusterServer(measuredValue?: number): void;
|
|
1389
|
+
/**
|
|
1390
|
+
* Get a default thermostat cluster server with the specified parameters.
|
|
1391
|
+
*
|
|
1392
|
+
* @param localTemperature - The local temperature value in degrees Celsius. Defaults to 23.
|
|
1393
|
+
* @param occupiedHeatingSetpoint - The occupied heating setpoint value in degrees Celsius. Defaults to 21.
|
|
1394
|
+
* @param occupiedCoolingSetpoint - The occupied cooling setpoint value in degrees Celsius. Defaults to 25.
|
|
1395
|
+
*/
|
|
1396
|
+
getDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
1397
|
+
readonly localTemperature: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1398
|
+
readonly outdoorTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1399
|
+
readonly remoteSensing: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1400
|
+
localTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
1401
|
+
outdoorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
1402
|
+
occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1403
|
+
}>, any>;
|
|
1404
|
+
readonly controlSequenceOfOperation: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
1405
|
+
readonly systemMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.SystemMode, any>;
|
|
1406
|
+
readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1407
|
+
initializationFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1408
|
+
hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1409
|
+
selfCalibrationFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1410
|
+
}>, any>;
|
|
1411
|
+
readonly temperatureSetpointHold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
1412
|
+
readonly temperatureSetpointHoldDuration: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
1413
|
+
readonly thermostatProgrammingOperationMode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1414
|
+
scheduleActive: import("@project-chip/matter.js/schema").BitFlag;
|
|
1415
|
+
autoRecovery: import("@project-chip/matter.js/schema").BitFlag;
|
|
1416
|
+
economy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1417
|
+
}>, any>;
|
|
1418
|
+
readonly thermostatRunningState: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1419
|
+
heat: import("@project-chip/matter.js/schema").BitFlag;
|
|
1420
|
+
cool: import("@project-chip/matter.js/schema").BitFlag;
|
|
1421
|
+
fan: import("@project-chip/matter.js/schema").BitFlag;
|
|
1422
|
+
heatStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1423
|
+
coolStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1424
|
+
fanStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1425
|
+
fanStage3: import("@project-chip/matter.js/schema").BitFlag;
|
|
1426
|
+
}>, any>;
|
|
1427
|
+
readonly setpointChangeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
1428
|
+
readonly setpointChangeAmount: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1429
|
+
readonly setpointChangeSourceTimestamp: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1430
|
+
readonly emergencyHeatDelta: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1431
|
+
readonly acType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
1432
|
+
readonly acCapacity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1433
|
+
readonly acRefrigerantType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
1434
|
+
readonly acCompressorType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
1435
|
+
readonly acErrorCode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1436
|
+
compressorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1437
|
+
roomSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1438
|
+
outdoorSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1439
|
+
coilSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1440
|
+
fanFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1441
|
+
}>, any>;
|
|
1442
|
+
readonly acLouverPosition: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
1443
|
+
readonly acCoilTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1444
|
+
readonly acCapacityFormat: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
1445
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1446
|
+
readonly heating: import("@project-chip/matter.js/schema").BitFlag;
|
|
1447
|
+
readonly cooling: import("@project-chip/matter.js/schema").BitFlag;
|
|
1448
|
+
readonly occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1449
|
+
readonly scheduleConfiguration: import("@project-chip/matter.js/schema").BitFlag;
|
|
1450
|
+
readonly setback: import("@project-chip/matter.js/schema").BitFlag;
|
|
1451
|
+
readonly autoMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
1452
|
+
readonly localTemperatureNotExposed: import("@project-chip/matter.js/schema").BitFlag;
|
|
1453
|
+
}>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "alarmMask" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat"> & Omit<{
|
|
1454
|
+
readonly absMinHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
1455
|
+
readonly absMaxHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
1456
|
+
readonly piHeatingDemand: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1457
|
+
readonly occupiedHeatingSetpoint: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
|
|
1458
|
+
readonly minHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1459
|
+
readonly maxHeatSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1460
|
+
} & {
|
|
1461
|
+
readonly absMinCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
1462
|
+
readonly absMaxCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalFixedAttribute<number, any>;
|
|
1463
|
+
readonly piCoolingDemand: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1464
|
+
readonly occupiedCoolingSetpoint: import("@project-chip/matter-node.js/cluster").WritableAttribute<number, any>;
|
|
1465
|
+
readonly minCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1466
|
+
readonly maxCoolSetpointLimit: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1467
|
+
}, "alarmMask" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1468
|
+
readonly heating: import("@project-chip/matter.js/schema").BitFlag;
|
|
1469
|
+
readonly cooling: import("@project-chip/matter.js/schema").BitFlag;
|
|
1470
|
+
readonly occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1471
|
+
readonly scheduleConfiguration: import("@project-chip/matter.js/schema").BitFlag;
|
|
1472
|
+
readonly setback: import("@project-chip/matter.js/schema").BitFlag;
|
|
1473
|
+
readonly autoMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
1474
|
+
readonly localTemperatureNotExposed: import("@project-chip/matter.js/schema").BitFlag;
|
|
1475
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
1476
|
+
readonly localTemperature: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
1477
|
+
readonly outdoorTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1478
|
+
readonly remoteSensing: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1479
|
+
localTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
1480
|
+
outdoorTemperature: import("@project-chip/matter.js/schema").BitFlag;
|
|
1481
|
+
occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1482
|
+
}>, any>;
|
|
1483
|
+
readonly controlSequenceOfOperation: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.ControlSequenceOfOperation, any>;
|
|
1484
|
+
readonly systemMode: import("@project-chip/matter-node.js/cluster").WritableAttribute<Thermostat.SystemMode, any>;
|
|
1485
|
+
readonly alarmMask: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1486
|
+
initializationFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1487
|
+
hardwareFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1488
|
+
selfCalibrationFailure: import("@project-chip/matter.js/schema").BitFlag;
|
|
1489
|
+
}>, any>;
|
|
1490
|
+
readonly temperatureSetpointHold: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.TemperatureSetpointHold, any>;
|
|
1491
|
+
readonly temperatureSetpointHoldDuration: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number | null, any>;
|
|
1492
|
+
readonly thermostatProgrammingOperationMode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1493
|
+
scheduleActive: import("@project-chip/matter.js/schema").BitFlag;
|
|
1494
|
+
autoRecovery: import("@project-chip/matter.js/schema").BitFlag;
|
|
1495
|
+
economy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1496
|
+
}>, any>;
|
|
1497
|
+
readonly thermostatRunningState: import("@project-chip/matter-node.js/cluster").OptionalAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1498
|
+
heat: import("@project-chip/matter.js/schema").BitFlag;
|
|
1499
|
+
cool: import("@project-chip/matter.js/schema").BitFlag;
|
|
1500
|
+
fan: import("@project-chip/matter.js/schema").BitFlag;
|
|
1501
|
+
heatStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1502
|
+
coolStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1503
|
+
fanStage2: import("@project-chip/matter.js/schema").BitFlag;
|
|
1504
|
+
fanStage3: import("@project-chip/matter.js/schema").BitFlag;
|
|
1505
|
+
}>, any>;
|
|
1506
|
+
readonly setpointChangeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<Thermostat.SetpointChangeSource, any>;
|
|
1507
|
+
readonly setpointChangeAmount: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1508
|
+
readonly setpointChangeSourceTimestamp: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
1509
|
+
readonly emergencyHeatDelta: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1510
|
+
readonly acType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcType, any>;
|
|
1511
|
+
readonly acCapacity: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<number, any>;
|
|
1512
|
+
readonly acRefrigerantType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcRefrigerantType, any>;
|
|
1513
|
+
readonly acCompressorType: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCompressorType, any>;
|
|
1514
|
+
readonly acErrorCode: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<import("@project-chip/matter.js/schema").TypeFromPartialBitSchema<{
|
|
1515
|
+
compressorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1516
|
+
roomSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1517
|
+
outdoorSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1518
|
+
coilSensorFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1519
|
+
fanFail: import("@project-chip/matter.js/schema").BitFlag;
|
|
1520
|
+
}>, any>;
|
|
1521
|
+
readonly acLouverPosition: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcLouverPosition, any>;
|
|
1522
|
+
readonly acCoilTemperature: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number | null, any>;
|
|
1523
|
+
readonly acCapacityFormat: import("@project-chip/matter-node.js/cluster").OptionalWritableAttribute<Thermostat.AcCapacityFormat, any>;
|
|
1524
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1525
|
+
readonly heating: import("@project-chip/matter.js/schema").BitFlag;
|
|
1526
|
+
readonly cooling: import("@project-chip/matter.js/schema").BitFlag;
|
|
1527
|
+
readonly occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1528
|
+
readonly scheduleConfiguration: import("@project-chip/matter.js/schema").BitFlag;
|
|
1529
|
+
readonly setback: import("@project-chip/matter.js/schema").BitFlag;
|
|
1530
|
+
readonly autoMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
1531
|
+
readonly localTemperatureNotExposed: import("@project-chip/matter.js/schema").BitFlag;
|
|
1532
|
+
}>>, "alarmMask" | "absMinHeatSetpointLimit" | "absMaxHeatSetpointLimit" | "absMinCoolSetpointLimit" | "absMaxCoolSetpointLimit" | "piCoolingDemand" | "piHeatingDemand" | "occupiedCoolingSetpoint" | "occupiedHeatingSetpoint" | "minHeatSetpointLimit" | "maxHeatSetpointLimit" | "minCoolSetpointLimit" | "maxCoolSetpointLimit" | "localTemperature" | "outdoorTemperature" | "remoteSensing" | "controlSequenceOfOperation" | "systemMode" | "temperatureSetpointHold" | "temperatureSetpointHoldDuration" | "thermostatProgrammingOperationMode" | "thermostatRunningState" | "setpointChangeSource" | "setpointChangeAmount" | "setpointChangeSourceTimestamp" | "emergencyHeatDelta" | "acType" | "acCapacity" | "acRefrigerantType" | "acCompressorType" | "acErrorCode" | "acLouverPosition" | "acCoilTemperature" | "acCapacityFormat" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1533
|
+
readonly heating: import("@project-chip/matter.js/schema").BitFlag;
|
|
1534
|
+
readonly cooling: import("@project-chip/matter.js/schema").BitFlag;
|
|
1535
|
+
readonly occupancy: import("@project-chip/matter.js/schema").BitFlag;
|
|
1536
|
+
readonly scheduleConfiguration: import("@project-chip/matter.js/schema").BitFlag;
|
|
1537
|
+
readonly setback: import("@project-chip/matter.js/schema").BitFlag;
|
|
1538
|
+
readonly autoMode: import("@project-chip/matter.js/schema").BitFlag;
|
|
1539
|
+
readonly localTemperatureNotExposed: import("@project-chip/matter.js/schema").BitFlag;
|
|
1540
|
+
}>>, Pick<{}, never> & Omit<{}, never>>;
|
|
359
1541
|
/**
|
|
360
1542
|
* Creates a default thermostat cluster server with the specified parameters.
|
|
361
1543
|
*
|
|
@@ -365,9 +1547,59 @@ export declare class MatterbridgeDevice extends MatterbridgeDevice_base {
|
|
|
365
1547
|
*/
|
|
366
1548
|
createDefaultThermostatClusterServer(localTemperature?: number, occupiedHeatingSetpoint?: number, occupiedCoolingSetpoint?: number): void;
|
|
367
1549
|
/**
|
|
368
|
-
*
|
|
1550
|
+
* Get a default time sync cluster server. Only needed to create a thermostat.
|
|
1551
|
+
*/
|
|
1552
|
+
getDefaultTimeSyncClusterServer(): import("@project-chip/matter-node.js/cluster").ClusterServerObj<Pick<import("@project-chip/matter-node.js/util").Merge<{
|
|
1553
|
+
readonly utcTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
|
|
1554
|
+
readonly granularity: import("@project-chip/matter-node.js/cluster").Attribute<TimeSync.Granularity, any>;
|
|
1555
|
+
readonly timeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TimeSync.TimeSource, any>;
|
|
1556
|
+
readonly trustedTimeNodeId: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
|
|
1557
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1558
|
+
readonly timeZone: import("@project-chip/matter.js/schema").BitFlag;
|
|
1559
|
+
readonly ntpClient: import("@project-chip/matter.js/schema").BitFlag;
|
|
1560
|
+
readonly ntpServer: import("@project-chip/matter.js/schema").BitFlag;
|
|
1561
|
+
}>>, "clusterRevision" | "featureMap" | "attributeList" | "eventList" | "acceptedCommandList" | "generatedCommandList" | "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId"> & Omit<{
|
|
1562
|
+
readonly timeZone: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1563
|
+
offset: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1564
|
+
validAt: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
|
|
1565
|
+
name: import("@project-chip/matter.js/tlv").OptionalFieldType<string>;
|
|
1566
|
+
}>[], any>;
|
|
1567
|
+
readonly dstOffset: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1568
|
+
offset: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1569
|
+
validStarting: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
|
|
1570
|
+
validUntil: import("@project-chip/matter.js/tlv").FieldType<number | bigint>;
|
|
1571
|
+
}>[], any>;
|
|
1572
|
+
readonly localTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
|
|
1573
|
+
readonly timeZoneDatabase: import("@project-chip/matter-node.js/cluster").FixedAttribute<boolean, any>;
|
|
1574
|
+
}, "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1575
|
+
readonly timeZone: import("@project-chip/matter.js/schema").BitFlag;
|
|
1576
|
+
readonly ntpClient: import("@project-chip/matter.js/schema").BitFlag;
|
|
1577
|
+
readonly ntpServer: import("@project-chip/matter.js/schema").BitFlag;
|
|
1578
|
+
}>> & Omit<import("@project-chip/matter-node.js/util").Merge<{
|
|
1579
|
+
readonly utcTime: import("@project-chip/matter-node.js/cluster").Attribute<number | bigint | null, any>;
|
|
1580
|
+
readonly granularity: import("@project-chip/matter-node.js/cluster").Attribute<TimeSync.Granularity, any>;
|
|
1581
|
+
readonly timeSource: import("@project-chip/matter-node.js/cluster").OptionalAttribute<TimeSync.TimeSource, any>;
|
|
1582
|
+
readonly trustedTimeNodeId: import("@project-chip/matter-node.js/cluster").WritableAttribute<import("@project-chip/matter-node.js/datatype").NodeId | null, any>;
|
|
1583
|
+
}, import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1584
|
+
readonly timeZone: import("@project-chip/matter.js/schema").BitFlag;
|
|
1585
|
+
readonly ntpClient: import("@project-chip/matter.js/schema").BitFlag;
|
|
1586
|
+
readonly ntpServer: import("@project-chip/matter.js/schema").BitFlag;
|
|
1587
|
+
}>>, "timeZone" | "dstOffset" | "localTime" | "timeZoneDatabase" | "utcTime" | "granularity" | "timeSource" | "trustedTimeNodeId" | keyof import("@project-chip/matter-node.js/cluster").GlobalAttributes<{
|
|
1588
|
+
readonly timeZone: import("@project-chip/matter.js/schema").BitFlag;
|
|
1589
|
+
readonly ntpClient: import("@project-chip/matter.js/schema").BitFlag;
|
|
1590
|
+
readonly ntpServer: import("@project-chip/matter.js/schema").BitFlag;
|
|
1591
|
+
}>>, Pick<{}, never> & Omit<{
|
|
1592
|
+
readonly dstTableEmpty: import("@project-chip/matter-node.js/cluster").Event<void, any>;
|
|
1593
|
+
readonly dstStatus: import("@project-chip/matter-node.js/cluster").Event<void, any>;
|
|
1594
|
+
readonly timeZoneStatus: import("@project-chip/matter-node.js/cluster").Event<import("@project-chip/matter.js/tlv").TypeFromFields<{
|
|
1595
|
+
offset: import("@project-chip/matter.js/tlv").FieldType<number>;
|
|
1596
|
+
name: import("@project-chip/matter.js/tlv").OptionalFieldType<string>;
|
|
1597
|
+
}>, any>;
|
|
1598
|
+
}, never> & Omit<{}, "dstTableEmpty" | "dstStatus" | "timeZoneStatus">>;
|
|
1599
|
+
/**
|
|
1600
|
+
* Creates a default time sync cluster server. Only needed to create a thermostat.
|
|
369
1601
|
*/
|
|
370
|
-
|
|
1602
|
+
createDefaultTimeSyncClusterServer(): void;
|
|
371
1603
|
}
|
|
372
1604
|
export {};
|
|
373
1605
|
//# sourceMappingURL=matterbridgeDevice.d.ts.map
|