/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ import { TypeFromSchema } from "../tlv/TlvSchema.js"; /** * This struct represents the accuracy of a measurement for a range of measurement values. Accuracy shall be expressed * as a maximum +/- percentage of the true value, a maximum +/- fixed value of the true value, or both. * * - If both PercentMax and FixedMax are indicated, then for a given true value in the range between RangeMin and * RangeMax, * * - the reported value shall be less than or equal to the sum of the true value, FixedMax and PercentMax percent of * the true value. * * - the reported value shall be greater than or equal to the true value minus the sum of FixedMax and PercentMax * percent of the true value. * * - If only PercentMax is indicated, then for a given true value in the range between RangeMin and RangeMax, * * - the reported value shall be less than or equal to the sum of the true value and PercentMax percent of the true * value. * * - the reported value shall be greater than or equal to the true value minus PercentMax percent of the true value. * * - If only FixedMax is indicated, then for a given true value in the range between RangeMin and RangeMax, * * - the reported value shall be less than or equal to the sum of the true value and FixedMax. * * - the reported value shall be greater than or equal to the true value minus FixedMax. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2 */ export declare const TlvMeasurementAccuracyRange: import("../tlv/TlvObject.js").ObjectSchema<{ /** * This field shall indicate the minimum measurement value for the specified level of accuracy. * * The value of this field shall be greater than or equal to the value of the MinMeasuredValue field on the * encompassing MeasurementAccuracyStruct. * * The value of this field shall be less than or equal to the value of the MaxMeasuredValue field on the * encompassing MeasurementAccuracyStruct. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.1 */ rangeMin: import("../tlv/TlvObject.js").FieldType; /** * This field shall indicate the maximum measurement value for the specified level of accuracy. * * The value of this field shall be greater than the value of the RangeMin field. * * The value of this field shall be greater than or equal to the value of the MinMeasuredValue field on the * encompassing MeasurementAccuracyStruct. * * The value of this field shall be less than or equal to the value of the MaxMeasuredValue field on the * encompassing MeasurementAccuracyStruct. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.2 */ rangeMax: import("../tlv/TlvObject.js").FieldType; /** * This field shall indicate the maximum +/- percentage accuracy for the associated measurement. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.3 */ percentMax: import("../tlv/TlvObject.js").OptionalFieldType; /** * This field shall indicate the minimum +/- percentage accuracy for the associated measurement. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.4 */ percentMin: import("../tlv/TlvObject.js").OptionalFieldType; /** * This field shall indicate the typical +/- percentage accuracy for the associated measurement. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.5 */ percentTypical: import("../tlv/TlvObject.js").OptionalFieldType; /** * This field shall indicate the maximum +/- fixed accuracy for the associated measurement, in the unit indicated by * MeasurementType. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.6 */ fixedMax: import("../tlv/TlvObject.js").OptionalFieldType; /** * This field shall indicate the minimum +/- fixed accuracy for the associated measurement, in the unit indicated by * MeasurementType. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.7 */ fixedMin: import("../tlv/TlvObject.js").OptionalFieldType; /** * This field shall indicate the typical +/- fixed accuracy for the associated measurement, in the unit indicated by * MeasurementType. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2.8 */ fixedTypical: import("../tlv/TlvObject.js").OptionalFieldType; }>; /** * This struct represents the accuracy of a measurement for a range of measurement values. Accuracy shall be expressed * as a maximum +/- percentage of the true value, a maximum +/- fixed value of the true value, or both. * * - If both PercentMax and FixedMax are indicated, then for a given true value in the range between RangeMin and * RangeMax, * * - the reported value shall be less than or equal to the sum of the true value, FixedMax and PercentMax percent of * the true value. * * - the reported value shall be greater than or equal to the true value minus the sum of FixedMax and PercentMax * percent of the true value. * * - If only PercentMax is indicated, then for a given true value in the range between RangeMin and RangeMax, * * - the reported value shall be less than or equal to the sum of the true value and PercentMax percent of the true * value. * * - the reported value shall be greater than or equal to the true value minus PercentMax percent of the true value. * * - If only FixedMax is indicated, then for a given true value in the range between RangeMin and RangeMax, * * - the reported value shall be less than or equal to the sum of the true value and FixedMax. * * - the reported value shall be greater than or equal to the true value minus FixedMax. * * @see {@link MatterSpecification.v151.Cluster} § 2.1.3.2 */ export interface MeasurementAccuracyRange extends TypeFromSchema { } //# sourceMappingURL=MeasurementAccuracyRange.d.ts.map