You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.5 KiB

#ifndef _COMMANDSHELP_H_
#define _COMMANDSHELP_H_
#include "SocketObject.h"
#include <stdlib.h>
/**
* @addtogroup commands
* Additional functions for the client commands to print help and usage of them
* @{
* @addtogroup help
* @{
*/
//Handling request for current Joint Values
void getPositionJointsHelp (SocketObject& client, std::string& arg);
//Get Position as POSE Matrix
void getPositionHomRowWiseHelp (SocketObject& client, std::string& arg);
//Get Force/torque values from TCP
void getForceTorqueTcpHelp (SocketObject& client, std::string& arg);
//Move to given Joint combination
void movePTPJointsHelp (SocketObject& client, std::string& arg);
//Move to given POSE position
void moveHomRowWiseStatusHelp (SocketObject& client, std::string& arg);
//Set Velocity
void setSpeedHelp (SocketObject& client, std::string& arg);
//Set Acceleration
void setAccelHelp (SocketObject& client, std::string& arg);
//Starting Potential Field Movement Mode
void startPotFieldModeHelp (SocketObject& client, std::string& arg);
//Stopping Potential Field Movement Mode
void stopPotFieldModeHelp (SocketObject& client, std::string& arg);
// set the current trajectory type
void setTrajectoryTypeHelp (SocketObject& client, std::string& arg);
// get the current trajectory type
void getTrajectoryTypeHelp (SocketObject& client, std::string& arg);
//Quit
void quitHelp (SocketObject& client, std::string& arg);
// check if we use a kuka
void isKukaLwrHelp (SocketObject& client, std::string& arg);
/**
* @}
* @}
*/
#endif