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

In "rec/robotino/api2/c/EncoderInput.h" you can find functions for reading Robotino's bumper. 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_ENCODERINPUTID   -1
 

Typedefs

typedef int EncoderInputId
 

Functions

DLLEXPORT EncoderInputId EncoderInput_construct ()
 
DLLEXPORT BOOL EncoderInput_destroy (EncoderInputId id)
 
DLLEXPORT BOOL EncoderInput_setComId (EncoderInputId id, ComId comId)
 
DLLEXPORT BOOL EncoderInput_resetPosition (EncoderInputId id)
 
DLLEXPORT int EncoderInput_position (EncoderInputId id)
 
DLLEXPORT int EncoderInput_velocity (EncoderInputId id)
 

Detailed Description

In "rec/robotino/api2/c/EncoderInput.h" you can find functions for reading Robotino's bumper.

Use EncoderInput_construct() to create a new encoder input object. Associate the bumper object with a com object using EncoderInput_setComId(). Use EncoderInput_value() to read the encoder input's state.

Macro Definition Documentation

#define INVALID_ENCODERINPUTID   -1

Invalid EncoderInputId is -1

Typedef Documentation

typedef int EncoderInputId

EncoderInputId

Function Documentation

DLLEXPORT EncoderInputId EncoderInput_construct ( )

Construct an encoder input object

Returns
Returns the ID of the newly constructed encoder input object.
DLLEXPORT BOOL EncoderInput_destroy ( EncoderInputId  id)

Destroy the encoder input object assigned to id

Parameters
idThe id of the encoder input object to be destroyed
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given EncoderInputId is invalid.
DLLEXPORT int EncoderInput_position ( EncoderInputId  id)
Parameters
idThe id of the encoder input object to be read
Returns
Actual position in ticks since power on or EncoderInput_resetPosition
DLLEXPORT BOOL EncoderInput_resetPosition ( EncoderInputId  id)

Set the current position to zero.

Parameters
idThe id of the encoder input object to be read
Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given EncoderInputId is invalid.
DLLEXPORT BOOL EncoderInput_setComId ( EncoderInputId  id,
ComId  comId 
)

Associated a encoder input object with a communication interface, i.e. binding the encoder input to a specific Robotino

Returns
Returns TRUE (1) on success. Returns FALSE (0) if the given EncoderInputId or ComId is invalid.
DLLEXPORT int EncoderInput_velocity ( EncoderInputId  id)
Parameters
idThe id of the encoder input object to be read
Returns
The actual velocity in ticks/s