Test Panda robot from Franka Emika cartesian force/torque controller implemented in vpRobotFranka.
#include <iostream>
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_FRANKA)
#include <visp3/robot/vpRobotFranka.h>
int main(int argc, char **argv)
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
std::string robot_ip = "192.168.1.1";
std::string log_folder;
for (int i = 1; i < argc; i++) {
if (std::string(argv[i]) == "--ip" && i + 1 < argc) {
robot_ip = std::string(argv[i + 1]);
}
else if (std::string(argv[i]) == "--log_folder" && i + 1 < argc) {
log_folder = std::string(argv[i + 1]);
}
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << argv[0] << " [--ip 192.168.1.1] [--log_folder <folder>] [--help] [-h]"
<< "\n";
return EXIT_SUCCESS;
}
}
try {
robot.setLogFolder(log_folder);
robot.connect(robot_ip);
std::cout << "WARNING: This example will move the robot! " << std::endl
<< "- Please make sure to have the user stop button at hand!" << std::endl
<< "- Please make also sure the end-effector is in contact with a flat surface such as a foam board!"
<< std::endl
<< "Press Enter to continue..." << std::endl;
std::cin.ignore();
ft_d[2] = -2;
double delta_t = 12.0;
std::cout <<
"Apply cartesian force/torque in a loop for " << delta_t / 2. <<
" sec : " << ft_d.
t() << std::endl;
double filter_gain = 0.15;
bool activate_pi_controller = true;
do {
activate_pi_controller);
ft_d[2] = -10;
static bool change_ft = true;
if (change_ft) {
std::cout <<
"Apply cartesian force/torque in a loop for " << delta_t / 2. <<
" sec : " << ft_d.
t()
<< std::endl;
}
change_ft = false;
}
}
std::cout <<
"ViSP exception: " << e.
what() << std::endl;
return EXIT_FAILURE;
}
catch (const franka::NetworkException &e) {
std::cout <<
"Franka network exception: " << e.
what() << std::endl;
std::cout << "Check if you are connected to the Franka robot"
<< " or if you specified the right IP using --ip command"
<< " line option set by default to 192.168.1.1. " << std::endl;
return EXIT_FAILURE;
}
catch (const std::exception &e) {
std::cout <<
"Franka exception: " << e.
what() << std::endl;
return EXIT_FAILURE;
}
std::cout << "The end" << std::endl;
return EXIT_SUCCESS;
}
#else
int main() { std::cout << "ViSP is not build with libfranka..." << std::endl; }
#endif
Implementation of column vector and the associated operations.
error that can be emitted by ViSP classes.
const char * what() const
@ STATE_STOP
Stops robot motion especially in velocity and acceleration control.
@ STATE_FORCE_TORQUE_CONTROL
Initialize the force/torque controller.
virtual vpRobotStateType setRobotState(const vpRobot::vpRobotStateType newState)
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeSecond()