getMinPositionChangeTrigger method
Implementation
int getMinPositionChangeTrigger() {
final pTrigger = calloc<Int32>();
try {
bindings.encoderGetMinPositionChangeTrigger(_handle!, pTrigger);
return pTrigger.value;
} catch (e) {
throw PhidgetException('An error occurred getting the minimum position change trigger');
} finally {
calloc.free(pTrigger);
}
}