Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
testUniversalRobotsJointPosition.cpp
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2024 by Inria. All rights reserved.
4 *
5 * This software is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * See the file LICENSE.txt at the root directory of this source
10 * distribution for additional information about the GNU GPL.
11 *
12 * For using ViSP with software that can not be combined with the GNU
13 * GPL, please contact Inria about acquiring a ViSP Professional
14 * Edition License.
15 *
16 * See https://visp.inria.fr for more information.
17 *
18 * This software was developed at:
19 * Inria Rennes - Bretagne Atlantique
20 * Campus Universitaire de Beaulieu
21 * 35042 Rennes Cedex
22 * France
23 *
24 * If you have questions regarding the use of this file, please contact
25 * Inria at visp@inria.fr
26 *
27 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 *
30 * Description:
31 * Test Universal Robot behavior.
32 */
33
39
40#include <iostream>
41
42#include <visp3/core/vpConfig.h>
43
44#if defined(VISP_HAVE_UR_RTDE)
45
46#include <visp3/robot/vpRobotUniversalRobots.h>
47
48int main(int argc, char **argv)
49{
50#ifdef ENABLE_VISP_NAMESPACE
51 using namespace VISP_NAMESPACE_NAME;
52#endif
53 std::string robot_ip = "192.168.0.100";
54
55 for (int i = 1; i < argc; i++) {
56 if (std::string(argv[i]) == "--ip" && i + 1 < argc) {
57 robot_ip = std::string(argv[i + 1]);
58 }
59 else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
60 std::cout << argv[0] << " [--ip " << robot_ip << "] [--help] [-h]"
61 << "\n";
62 return EXIT_SUCCESS;
63 }
64 }
65
66 try {
68 robot.connect(robot_ip);
69
70 std::cout << "WARNING: This example will move the robot! "
71 << "Please make sure to have the user stop button at hand!" << std::endl
72 << "Press Enter to continue..." << std::endl;
73 std::cin.ignore();
74
75 // Get current position
76 vpColVector q_init, q;
77 robot.getPosition(vpRobot::JOINT_STATE, q);
78
79 // Backup initial joint position
80 q_init = q;
81
82 // Enable position controller
83 robot.setRobotState(vpRobot::STATE_POSITION_CONTROL);
84
85 // Move last joint to 0
86 q[5] = vpMath::rad(0);
87 std::cout << "Move to joint position [rad]: " << q.t() << std::endl;
88 robot.setPosition(vpRobot::JOINT_STATE, q);
89
90 // Move last joint to +90 deg
91 q[5] = vpMath::rad(90);
92 std::cout << "Move to joint position [rad]: " << q.t() << std::endl;
93 robot.setPosition(vpRobot::JOINT_STATE, q);
94
95 // Move last joint to -90 deg
96 q[5] = vpMath::rad(-90);
97 std::cout << "Move to joint position [rad]: " << q.t() << std::endl;
98 robot.setPosition(vpRobot::JOINT_STATE, q);
99
100 // Move back to initial position
101 std::cout << "Move to joint position [rad]: " << q_init.t() << std::endl;
102 robot.setPosition(vpRobot::JOINT_STATE, q_init);
103 }
104 catch (const vpException &e) {
105 std::cout << "ViSP exception: " << e.what() << std::endl;
106 return EXIT_FAILURE;
107 }
108 catch (const std::exception &e) {
109 std::cout << "ur_rtde exception: " << e.what() << std::endl;
110 return EXIT_FAILURE;
111 }
112
113 std::cout << "The end" << std::endl;
114 return EXIT_SUCCESS;
115}
116
117#else
118int main()
119{
120 std::cout << "ViSP is not build with libur_rtde 3rd party used to control a robot from Universal Robots..."
121 << std::endl;
122}
123#endif
Implementation of column vector and the associated operations.
vpRowVector t() const
error that can be emitted by ViSP classes.
Definition vpException.h:60
static double rad(double deg)
Definition vpMath.h:129
void connect(const std::string &ur_address)
@ JOINT_STATE
Definition vpRobot.h:79
@ STATE_POSITION_CONTROL
Initialize the position controller.
Definition vpRobot.h:65