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

Hierarchy

  • StateType
    • State

Properties

maxMeasuredValue: null | number

The MaxMeasuredValue attribute 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.5.4.3

measuredValue: null | number

MeasuredValue represents the flow in m/h as follows:

MeasuredValue = 10 x Flow

The null value indicates that the flow measurement is unknown, otherwise the range shall be as described in Measured Value.

MatterSpecification.v13.Cluster § 2.5.4.1

minMeasuredValue: null | number

The MinMeasuredValue attribute 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.5.4.2

tolerance?: number

See Measured Value.

MatterSpecification.v13.Cluster § 2.5.4.4