rec::robotino::api2 C interface
Macros | Typedefs | Functions
Manipulator.h File Reference

In "rec/robotino/api2/c/Manipulator.h" you can find functions for controlling Robotino's manipulator. More...

#include "rec/robotino/api2/c/globals.h"
#include "rec/robotino/api2/c/Com.h"

Go to the source code of this file.

Macros

#define INVALID_MANIPULATORID   -1
 

Typedefs

typedef int ManipulatorId
 

Functions

DLLEXPORT ManipulatorId Manipulator_construct ()
 
DLLEXPORT BOOL Manipulator_destroy (ManipulatorId id)
 
DLLEXPORT BOOL Manipulator_setComId (ManipulatorId id, ComId comId)
 
DLLEXPORT BOOL Manipulator_grab (ManipulatorId id)
 
DLLEXPORT BOOL Manipulator_getReadings (ManipulatorId id, unsigned int *seq, float *angles, unsigned int *numAngles, float *speeds, unsigned int *numSpeeds, int *errors, unsigned int *numErrors, int *motors_enabled, int *store_current_position, float *cwAxesLimits, unsigned int *numCwAxesLimits, float *ccwAxesLimits, unsigned int *numCcwAxesLimits)
 
DLLEXPORT BOOL Manipulator_setAxis (ManipulatorId id, unsigned int axis, float angle, float speed)
 
DLLEXPORT BOOL Manipulator_setAxes (ManipulatorId id, const float *angles, unsigned int numAngles, const float *speeds, unsigned int numSpeeds)
 
DLLEXPORT BOOL Manipulator_setPowerEnabled (ManipulatorId id, unsigned int channel, int enable)
 
DLLEXPORT BOOL Manipulator_toggleTorque (ManipulatorId id)
 

Detailed Description

In "rec/robotino/api2/c/Manipulator.h" you can find functions for controlling Robotino's manipulator.

Use Manipulator_construct() to create a new manipulator object. Associate the manipulator object with a com object using Manipulator_setComId(). Use Manipulator_setAxis() to drive one axis to the desired position. Use Manipulator_getReadings() to get sensor readings from Robotino's manipulator.

Macro Definition Documentation

#define INVALID_MANIPULATORID   -1

Invalid ManipulatorId is -1

Typedef Documentation

typedef int ManipulatorId

ManipulatorId

Function Documentation

DLLEXPORT ManipulatorId Manipulator_construct ( )

Construct an Manipulator object

Returns
Returns the ID of the newly constructed Manipulator object.
DLLEXPORT BOOL Manipulator_destroy ( ManipulatorId  id)

Destroy the Manipulator object assigned to id

Parameters
idThe id of the Manipulator object to be destroyed
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
DLLEXPORT BOOL Manipulator_getReadings ( ManipulatorId  id,
unsigned int *  seq,
float *  angles,
unsigned int *  numAngles,
float *  speeds,
unsigned int *  numSpeeds,
int *  errors,
unsigned int *  numErrors,
int *  motors_enabled,
int *  store_current_position,
float *  cwAxesLimits,
unsigned int *  numCwAxesLimits,
float *  ccwAxesLimits,
unsigned int *  numCcwAxesLimits 
)

Get readings from Robotino's manipulator. Do not forget to call Manipulator_grab first. Conditions to be met:

  • sizeof(angles) must be 9*sizeof(float)
  • sizeof(speeds) must be 9*sizeof(float)
  • sizeof(cwAxesLimits) must be 9*sizeof(float)
  • sizeof(ccwAxesLimits) must be 9*sizeof(float) Simply create array like float angles[9]; float speeds[9]; float cwAxesLimits[9]; float ccwAxesLimits[9];
    Parameters
    idThe manipulator id.
    seqThe sequenze number.
    anglesArray storing the current axes positions in degrees.
    numAnglesThe number of elemets stored in angles. This is equal to the number of axes.
    speedsArray storing the current axes speeds in rpm.
    numSpeedsThe number of elemets stored in speeds. This is equal to the number of axes.
    errorsError code of axes.
    numErrorsThe number of elemets stored in errors. This is equal to the number of axes.
    motors_enabledIs 1 if the motors are enabled. Otherwise 0.
    store_current_positionIs 1 if the store position button is pressed. Otherwise 0.
    cwAxesLimitsArray storing the current axes limits in degrees.
    numCwAxesLimitsThe number of elemets stored in cwAxesLimits. If axes limits had been received this is equal to the number of axes. Otherwise 0.
    ccwAxesLimitsArray storing the current axes limits in degrees.
    numCcwAxesLimitsThe number of elemets stored in ccwAxesLimits. If axes limits had been received this is equal to the number of axes. Otherwise 0.
    Returns
    Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
    See also
    Manipulator_grab
DLLEXPORT BOOL Manipulator_grab ( ManipulatorId  id)

Grab image.

Parameters
idThe manipulator id.
Returns
Returns TRUE (1) if a new sensor readings are available since the last call of Manipulator_grab. Returns FALSE (0) otherwise.
DLLEXPORT BOOL Manipulator_setAxes ( ManipulatorId  id,
const float *  angles,
unsigned int  numAngles,
const float *  speeds,
unsigned int  numSpeeds 
)

Set position and speed of one axis.

Parameters
idThe manipulator id.
anglesArray containing the set-points in deg
numAnglesNumber of elements in angles
speedsArray containing the speed set-points in rpm
numSpeedsNumber of elements in speeds
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
DLLEXPORT BOOL Manipulator_setAxis ( ManipulatorId  id,
unsigned int  axis,
float  angle,
float  speed 
)

Set position and speed of one axis.

Parameters
idThe manipulator id.
axisAxis number. Axes are counted starting with 0.
angleThis is the position set-point in deg
speedThis is the speed set-point in rpm
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
DLLEXPORT BOOL Manipulator_setComId ( ManipulatorId  id,
ComId  comId 
)

Associated an Manipulator object with a communication interface, i.e. binding the Manipulator to a specific Robotino

Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
DLLEXPORT BOOL Manipulator_setPowerEnabled ( ManipulatorId  id,
unsigned int  channel,
int  enable 
)

Enabled/Disable power of one channel

Parameters
idThe manipulator id.
channelThe channel at which to enable/disable power.
enableIf 1 power is enabled. 0 to disable power
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.
DLLEXPORT BOOL Manipulator_toggleTorque ( ManipulatorId  id)

Toggle the power state of all servos' motors.

Parameters
idThe manipulator id.
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given ManipulatorId is invalid.