In "rec/robotino/api2/c/Gripper.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.
In "rec/robotino/api2/c/Gripper.h" you can find functions for reading Robotino's bumper.
Use Gripper_construct() to create a new gripper object. Associate the gripper object with a com object using Gripper_setComId(). Use Gripper_open() to open the gripper. Use Gripper_close() to open the gripper. Use Gripper_isOpened() to check if the gripper is opened. Use Gripper_isClosed() to check if the gripper is closed.
#define INVALID_GRIPPERID -1 |
Construct an gripper object
- Returns
- Returns the ID of the newly constructed gripper object.
DLLEXPORT BOOL Gripper_destroy |
( |
GripperId |
id | ) |
|
Destroy the gripper object assigned to id
- Parameters
-
id | The id of the gripper object to be destroyed |
- Returns
- Returns TRUE (1) on success. Returns FALSE (0) if the given GripperId is invalid.
DLLEXPORT BOOL Gripper_isClosed |
( |
GripperId |
id | ) |
|
- Returns
- Returns true if gripper is closed. False otherwise.
- See also
- isOpened
DLLEXPORT BOOL Gripper_isOpened |
( |
GripperId |
id | ) |
|
- Returns
- Returns true if gripper is opened. False otherwise.
- See also
- isClosed
Associated a gripper object with a communication interface, i.e. binding the gripper to a specific Robotino
- Returns
- Returns TRUE (1) on success. Returns FALSE (0) if the given GripperId or ComId is invalid.