Test for reading the Virtuose's joint values inside the main function after checking the emergency button.
#include <visp3/robot/vpVirtuose.h>
int main(int argc, char **argv)
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
#if defined(VISP_HAVE_VIRTUOSE)
std::string opt_ip = "localhost";
int opt_port = 5000;
for (int i = 0; i < argc; i++) {
if (std::string(argv[i]) == "--ip")
opt_ip = std::string(argv[i + 1]);
else if (std::string(argv[i]) == "--port")
opt_port = std::atoi(argv[i + 1]);
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0]
<< " [--ip <localhost>] [--port <port>]"
" [--help] [-h]\n"
<< std::endl
<< "Description: " << std::endl
<< " --ip <localhost>" << std::endl
<< "\tHost IP address. Default value: \"localhost\"." << std::endl
<< std::endl
<< " --port <port>" << std::endl
<< "\tCommunication port. Default value: 5000." << std::endl
<< "\tSuggested values: " << std::endl
<< "\t- 5000 to communicate with the Virtuose." << std::endl
<< "\t- 53210 to communicate with the Virtuose equipped with the Glove." << std::endl
<< std::endl;
return EXIT_SUCCESS;
}
}
try {
std::cout << "Try to connect to " << opt_ip << " port " << opt_port << std::endl;
if (emergStop) {
std::cout << "The system is operational." << std::endl;
std::cout <<
"The current joint values are : " << q.
t() << std::endl;
}
else
std::cout << "The system is not operational. \nPlease plug the "
"emergency stop to the system (or untrigger it)."
<< std::endl;
}
return EXIT_FAILURE;
}
#else
(void)argc;
(void)argv;
std::cout << "You should install Virtuose SDK to use this binary..." << std::endl;
#endif
return EXIT_SUCCESS;
}
Implementation of column vector and the associated operations.
error that can be emitted by ViSP classes.
const std::string & getStringMessage() const
vpColVector getArticularPosition() const
void setIpAddressAndPort(const std::string &ip, int port)
bool getEmergencyStop() const