ConstantSpeedComponent: {
    attributes: {
        maxConstSpeed: FixedAttribute<number | null, any>;
        minConstSpeed: FixedAttribute<number | null, any>;
    };
}

A PumpConfigurationAndControlCluster supports these elements if it supports feature ConstantSpeed.

Type declaration

  • Readonlyattributes: {
        maxConstSpeed: FixedAttribute<number | null, any>;
        minConstSpeed: FixedAttribute<number | null, any>;
    }
    • ReadonlymaxConstSpeed: FixedAttribute<number | null, any>

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

      Valid range is 0 to 65,534 RPM (steps of 1 RPM). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.9

    • ReadonlyminConstSpeed: FixedAttribute<number | null, any>

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

      Valid range is 0 to 65,534 RPM (steps of 1 RPM). Null if the value is invalid.

      MatterSpecification.v13.Cluster § 4.2.7.8