Method: Phidgets::DCMotor#getMinAcceleration
- Defined in:
- ext/phidgets/phidgets_dc_motor.c
#getMinAcceleration ⇒ Object Also known as: min_acceleration
The minimum value that Acceleration can be set to.
24 25 26 |
# File 'ext/phidgets/phidgets_dc_motor.c', line 24
VALUE ph_dc_motor_get_min_acceleration(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetDCMotor_getMinAcceleration);
}
|