Method: Phidgets::BLDCMotor#getMaxPosition
- Defined in:
- ext/phidgets/phidgets_bldc_motor.c
#getMaxPosition ⇒ Object Also known as: max_position
The upper bound of Position.
69 70 71 |
# File 'ext/phidgets/phidgets_bldc_motor.c', line 69
VALUE ph_bldc_motor_get_max_position(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetBLDCMotor_getMaxPosition);
}
|