NumericMeasurementComponent: {
    attributes: {
        maxMeasuredValue: Attribute<number | null, any>;
        measuredValue: Attribute<number | null, any>;
        measurementUnit: FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
        minMeasuredValue: Attribute<number | null, any>;
        uncertainty: OptionalAttribute<number, any>;
    };
}

A ConcentrationMeasurementCluster supports these elements if it supports feature NumericMeasurement.

Type declaration

  • Readonlyattributes: {
        maxMeasuredValue: Attribute<number | null, any>;
        measuredValue: Attribute<number | null, any>;
        measurementUnit: FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
        minMeasuredValue: Attribute<number | null, any>;
        uncertainty: OptionalAttribute<number, any>;
    }
    • ReadonlymaxMeasuredValue: Attribute<number | null, any>

      Indicates the maximum value of MeasuredValue that is capable of being measured. A MaxMeasuredValue of null indicates that the MaxMeasuredValue is not defined.

      MatterSpecification.v13.Cluster § 2.10.6.3

    • ReadonlymeasuredValue: Attribute<number | null, any>

      Indicates the most recent measurement as a single-precision floating-point number. MeasuredValue’s unit is represented by MeasurementUnit.

      A value of null indicates that the measurement is unknown or outside the valid range. MinMeasuredValue and MaxMeasuredValue define the valid range for MeasuredValue.

      MatterSpecification.v13.Cluster § 2.10.6.1

    • ReadonlymeasurementUnit: FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>

      Indicates the unit of MeasuredValue. See MeasurementUnitEnum.

      MatterSpecification.v13.Cluster § 2.10.6.9

    • ReadonlyminMeasuredValue: Attribute<number | null, any>

      Indicates the minimum value of MeasuredValue that is capable of being measured. A MinMeasuredValue of null indicates that the MinMeasuredValue is not defined.

      MatterSpecification.v13.Cluster § 2.10.6.2

    • Readonlyuncertainty: OptionalAttribute<number, any>

      Indicates the range of error or deviation that can be found in MeasuredValue and PeakMeasuredValue. This is considered a +/- value and should be considered to be in MeasurementUnit.

      MatterSpecification.v13.Cluster § 2.10.6.8