Method: Phidgets::DCMotor#getMaxCurrentLimit
- Defined in:
- ext/phidgets/phidgets_dc_motor.c
#getMaxCurrentLimit ⇒ Object Also known as: max_current_limit
The maximum value that CurrentLimit can be set to.
70 71 72 |
# File 'ext/phidgets/phidgets_dc_motor.c', line 70
VALUE ph_dc_motor_get_max_current_limit(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetDCMotor_getMaxCurrentLimit);
}
|