ConstantFlowComponent: {
    attributes: {
        maxConstFlow: FixedAttribute<number | null, any>;
        minConstFlow: FixedAttribute<number | null, any>;
    };
}

A PumpConfigurationAndControlCluster supports these elements if it supports feature ConstantFlow.

Type declaration

  • Readonlyattributes: {
        maxConstFlow: FixedAttribute<number | null, any>;
        minConstFlow: FixedAttribute<number | null, any>;
    }
    • ReadonlymaxConstFlow: FixedAttribute<number | null, any>

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

      Valid range is 0 m/h to 6,553.4 m/h (steps of 0.1 m/h). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.11

    • ReadonlyminConstFlow: FixedAttribute<number | null, any>

      This attribute specifies the minimum flow the pump can achieve when it is working with the Con

      trolMode attribute set to ConstantFlow.

      Valid range is 0 m/h to 6,553.4 m/h (steps of 0.1 m/h). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.10