setVelocityLimit method

void setVelocityLimit(
  1. double velocityLimit
)

Implementation

void setVelocityLimit(double velocityLimit) {
  _ensureOpen();
  bindings.checkPhidgetError(
      bindings.stepperSetVelocityLimit(_handle!, velocityLimit),
      'Stepper.setVelocityLimit');
}