ConstantTemperatureComponent: {
    attributes: {
        maxConstTemp: FixedAttribute<number | null, any>;
        minConstTemp: FixedAttribute<number | null, any>;
    };
}

A PumpConfigurationAndControlCluster supports these elements if it supports feature ConstantTemperature.

Type declaration

  • Readonlyattributes: {
        maxConstTemp: FixedAttribute<number | null, any>;
        minConstTemp: FixedAttribute<number | null, any>;
    }
    • ReadonlymaxConstTemp: FixedAttribute<number | null, any>

      This attribute specifies the maximum temperature the pump can maintain in the system when it is working with the ControlMode attribute set to ConstantTemperature.

      MaxConstTemp shall be greater than or equal to MinConstTemp

      Valid range is –273.15 °C to 327.67 °C (steps of 0.01 °C). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.13

    • ReadonlyminConstTemp: FixedAttribute<number | null, any>

      This attribute specifies the minimum temperature the pump can maintain in the system when it is working with the ControlMode attribute set to ConstantTemperature.

      Valid range is –273.15 °C to 327.67 °C (steps of 0.01 °C). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.12