ConstantPressureComponent: {
    attributes: {
        maxConstPressure: FixedAttribute<number | null, any>;
        minConstPressure: FixedAttribute<number | null, any>;
    };
}

A PumpConfigurationAndControlCluster supports these elements if it supports feature ConstantPressure.

Type declaration

  • Readonlyattributes: {
        maxConstPressure: FixedAttribute<number | null, any>;
        minConstPressure: FixedAttribute<number | null, any>;
    }
    • ReadonlymaxConstPressure: FixedAttribute<number | null, any>

      This attribute specifies the maximum pressure the pump can achieve when it is working with the ControlMode attribute set to ConstantPressure.

      Valid range is –3,276.7 kPa to 3,276.7 kPa (steps of 0.1 kPa). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.5

    • ReadonlyminConstPressure: FixedAttribute<number | null, any>

      This attribute specifies the minimum pressure the pump can achieve when it is working with the ControlMode attribute set to ConstantPressure.

      Valid range is –3,276.7 kPa to 3,276.7 kPa (steps of 0.1 kPa). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.4