Method: Phidgets::DCMotor#getMinCurrentLimit
- Defined in:
- ext/phidgets/phidgets_dc_motor.c
#getMinCurrentLimit ⇒ Object Also known as: min_current_limit
The minimum value that CurrentLimit can be set to.
66 67 68 |
# File 'ext/phidgets/phidgets_dc_motor.c', line 66
VALUE ph_dc_motor_get_min_current_limit(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetDCMotor_getMinCurrentLimit);
}
|