Method: Phidgets::BLDCMotor#getMinPosition
- Defined in:
- ext/phidgets/phidgets_bldc_motor.c
#getMinPosition ⇒ Object Also known as: min_position
The lower bound of Position.
65 66 67 |
# File 'ext/phidgets/phidgets_bldc_motor.c', line 65
VALUE ph_bldc_motor_get_min_position(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetBLDCMotor_getMinPosition);
}
|