interface State {
    maxMeasuredValue: null | number;
    measuredValue: null | number;
    minMeasuredValue: null | number;
    tolerance?: number;
}

Hierarchy

  • StateType
    • State

Properties

maxMeasuredValue: null | number

Indicates the maximum value of MeasuredValue that can be measured. See Measured Value for more details.

The null value indicates that the value is not available.

MatterSpecification.v13.Cluster § 2.4.5.3

measuredValue: null | number

Indicates the pressure in kPa as follows:

MeasuredValue = 10 x Pressure [kPa]

The null value indicates that the value is not available.

MatterSpecification.v13.Cluster § 2.4.5.1

minMeasuredValue: null | number

Indicates the minimum value of MeasuredValue that can be measured. See Measured Value for more details.

The null value indicates that the value is not available.

MatterSpecification.v13.Cluster § 2.4.5.2

tolerance?: number

See Measured Value.

MatterSpecification.v13.Cluster § 2.4.5.4