-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from Luligu/dev
Release 1.3.2
- Loading branch information
Showing
24 changed files
with
834 additions
and
425 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@Luligu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# TODO list | ||
|
||
- drop down list of plugins | ||
- fabrics list | ||
- fix unpair procedure |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
src/cluster/CarbonDioxideConcentrationMeasurementCluster.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* eslint-disable @typescript-eslint/no-namespace */ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/ | ||
|
||
import { ClusterRegistry, MutableCluster } from '@project-chip/matter-node.js/cluster'; | ||
import { Identity } from '@project-chip/matter-node.js/util'; | ||
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js'; | ||
|
||
export namespace CarbonDioxideConcentrationMeasurement { | ||
export const Base = { ...ConcentrationMeasurement.Base, id: 0x40d, name: 'CarbonDioxideConcentrationMeasurement' }; | ||
|
||
/** | ||
* @see {@link Cluster} | ||
*/ | ||
export const ClusterInstance = MutableCluster.ExtensibleOnly(Base); | ||
|
||
/** | ||
* This alias specializes the semantics of {@link ConcentrationMeasurement.Cluster}. | ||
* | ||
* Per the Matter specification you cannot use {@link CarbonDioxideConcentrationMeasurementCluster} without | ||
* enabling certain feature combinations. You must use the {@link with} factory method to obtain a working cluster. | ||
*/ | ||
export type Cluster = Identity<typeof ClusterInstance>; | ||
|
||
export const Cluster: Cluster = ClusterInstance; | ||
|
||
/** | ||
* This cluster supports all CarbonDioxideConcentrationMeasurement features. It may support illegal feature | ||
* combinations. | ||
* | ||
* If you use this cluster you must manually specify which features are active and ensure the set of active | ||
* features is legal per the Matter specification. | ||
*/ | ||
export const CompleteInstance = MutableCluster({ ...ConcentrationMeasurement.Complete, id: 0x40d }); | ||
|
||
export type Complete = Identity<typeof CompleteInstance>; | ||
export const Complete: Complete = CompleteInstance; | ||
} | ||
|
||
export type CarbonDioxideConcentrationMeasurementCluster = CarbonDioxideConcentrationMeasurement.Cluster; | ||
export const CarbonDioxideConcentrationMeasurementCluster = CarbonDioxideConcentrationMeasurement.Cluster; | ||
ClusterRegistry.register(CarbonDioxideConcentrationMeasurement.Complete); |
47 changes: 47 additions & 0 deletions
47
src/cluster/FormaldehydeConcentrationMeasurementCluster.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* eslint-disable @typescript-eslint/no-namespace */ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/ | ||
|
||
import { ClusterRegistry, MutableCluster } from '@project-chip/matter-node.js/cluster'; | ||
import { Identity } from '@project-chip/matter-node.js/util'; | ||
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js'; | ||
|
||
export namespace FormaldehydeConcentrationMeasurement { | ||
export const Base = { ...ConcentrationMeasurement.Base, id: 0x42b, name: 'FormaldehydeConcentrationMeasurement' }; | ||
|
||
/** | ||
* @see {@link Cluster} | ||
*/ | ||
export const ClusterInstance = MutableCluster.ExtensibleOnly(Base); | ||
|
||
/** | ||
* This alias specializes the semantics of {@link ConcentrationMeasurement.Cluster}. | ||
* | ||
* Per the Matter specification you cannot use {@link FormaldehydeConcentrationMeasurementCluster} without enabling | ||
* certain feature combinations. You must use the {@link with} factory method to obtain a working cluster. | ||
*/ | ||
export type Cluster = Identity<typeof ClusterInstance>; | ||
|
||
export const Cluster: Cluster = ClusterInstance; | ||
|
||
/** | ||
* This cluster supports all FormaldehydeConcentrationMeasurement features. It may support illegal feature | ||
* combinations. | ||
* | ||
* If you use this cluster you must manually specify which features are active and ensure the set of active | ||
* features is legal per the Matter specification. | ||
*/ | ||
export const CompleteInstance = MutableCluster({ ...ConcentrationMeasurement.Complete, id: 0x42b }); | ||
|
||
export type Complete = Identity<typeof CompleteInstance>; | ||
export const Complete: Complete = CompleteInstance; | ||
} | ||
|
||
export type FormaldehydeConcentrationMeasurementCluster = FormaldehydeConcentrationMeasurement.Cluster; | ||
export const FormaldehydeConcentrationMeasurementCluster = FormaldehydeConcentrationMeasurement.Cluster; | ||
ClusterRegistry.register(FormaldehydeConcentrationMeasurement.Complete); |
51 changes: 51 additions & 0 deletions
51
src/cluster/NitrogenDioxideConcentrationMeasurementCluster.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* eslint-disable @typescript-eslint/no-namespace */ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/ | ||
|
||
import { ClusterRegistry, MutableCluster } from '@project-chip/matter-node.js/cluster'; | ||
import { Identity } from '@project-chip/matter-node.js/util'; | ||
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js'; | ||
|
||
export namespace NitrogenDioxideConcentrationMeasurement { | ||
export const Base = { | ||
...ConcentrationMeasurement.Base, | ||
id: 0x413, | ||
name: 'NitrogenDioxideConcentrationMeasurement', | ||
}; | ||
|
||
/** | ||
* @see {@link Cluster} | ||
*/ | ||
export const ClusterInstance = MutableCluster.ExtensibleOnly(Base); | ||
|
||
/** | ||
* This alias specializes the semantics of {@link ConcentrationMeasurement.Cluster}. | ||
* | ||
* Per the Matter specification you cannot use {@link NitrogenDioxideConcentrationMeasurementCluster} without | ||
* enabling certain feature combinations. You must use the {@link with} factory method to obtain a working cluster. | ||
*/ | ||
export type Cluster = Identity<typeof ClusterInstance>; | ||
|
||
export const Cluster: Cluster = ClusterInstance; | ||
|
||
/** | ||
* This cluster supports all NitrogenDioxideConcentrationMeasurement features. It may support illegal feature | ||
* combinations. | ||
* | ||
* If you use this cluster you must manually specify which features are active and ensure the set of active | ||
* features is legal per the Matter specification. | ||
*/ | ||
export const CompleteInstance = MutableCluster({ ...ConcentrationMeasurement.Complete, id: 0x413 }); | ||
|
||
export type Complete = Identity<typeof CompleteInstance>; | ||
export const Complete: Complete = CompleteInstance; | ||
} | ||
|
||
export type NitrogenDioxideConcentrationMeasurementCluster = NitrogenDioxideConcentrationMeasurement.Cluster; | ||
export const NitrogenDioxideConcentrationMeasurementCluster = NitrogenDioxideConcentrationMeasurement.Cluster; | ||
ClusterRegistry.register(NitrogenDioxideConcentrationMeasurement.Complete); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* eslint-disable @typescript-eslint/no-namespace */ | ||
/** | ||
* @license | ||
* Copyright 2022-2024 Matter.js Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/ | ||
|
||
import { ClusterRegistry, MutableCluster } from '@project-chip/matter-node.js/cluster'; | ||
import { Identity } from '@project-chip/matter-node.js/util'; | ||
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js'; | ||
|
||
export namespace OzoneConcentrationMeasurement { | ||
export const Base = { ...ConcentrationMeasurement.Base, id: 0x415, name: 'OzoneConcentrationMeasurement' }; | ||
|
||
/** | ||
* @see {@link Cluster} | ||
*/ | ||
export const ClusterInstance = MutableCluster.ExtensibleOnly(Base); | ||
|
||
/** | ||
* This alias specializes the semantics of {@link ConcentrationMeasurement.Cluster}. | ||
* | ||
* Per the Matter specification you cannot use {@link OzoneConcentrationMeasurementCluster} without enabling | ||
* certain feature combinations. You must use the {@link with} factory method to obtain a working cluster. | ||
*/ | ||
export type Cluster = Identity<typeof ClusterInstance>; | ||
|
||
export const Cluster: Cluster = ClusterInstance; | ||
|
||
/** | ||
* This cluster supports all OzoneConcentrationMeasurement features. It may support illegal feature combinations. | ||
* | ||
* If you use this cluster you must manually specify which features are active and ensure the set of active | ||
* features is legal per the Matter specification. | ||
*/ | ||
export const CompleteInstance = MutableCluster({ ...ConcentrationMeasurement.Complete, id: 0x415 }); | ||
|
||
export type Complete = Identity<typeof CompleteInstance>; | ||
export const Complete: Complete = CompleteInstance; | ||
} | ||
|
||
export type OzoneConcentrationMeasurementCluster = OzoneConcentrationMeasurement.Cluster; | ||
export const OzoneConcentrationMeasurementCluster = OzoneConcentrationMeasurement.Cluster; | ||
ClusterRegistry.register(OzoneConcentrationMeasurement.Complete); |
Oops, something went wrong.