getVelocityLimit method

double getVelocityLimit()

Implementation

double getVelocityLimit() {
  _ensureOpen();
  final pLimit = calloc<Double>();
  try {
    bindings.checkPhidgetError(
        bindings.stepperGetVelocityLimit(_handle!, pLimit),
        'Stepper.getVelocityLimit');
    return pLimit.value;
  } finally {
    calloc.free(pLimit);
  }
}