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

Hierarchy

  • StateType
    • State

Properties

maxMeasuredValue: null | number

This attribute indicates the maximum value of MeasuredValue that is capable of being measured. See Measured Value for more details.

The null value indicates that the value is not available.

MatterSpecification.v13.Cluster § 2.3.4.3

measuredValue: null | number

Indicates the measured temperature. The null value indicates that the temperature is unknown.

MatterSpecification.v13.Cluster § 2.3.4.1

minMeasuredValue: null | number

Indicates the minimum value of MeasuredValue that is capable of being measured. See Measured Value for more details.

The null value indicates that the value is not available.

MatterSpecification.v13.Cluster § 2.3.4.2

tolerance?: number

See Measured Value.

MatterSpecification.v13.Cluster § 2.3.4.4