Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
testUniversalRobotsCartPosition.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 std::cout << "Connected robot model: " << robot.getRobotModel() << std::endl;
70
71 std::cout << "WARNING: This example will move the robot! "
72 << "Please make sure to have the user stop button at hand!" << std::endl
73 << "Press Enter to continue..." << std::endl;
74 std::cin.ignore();
75
76 /*
77 * Move to a safe position
78 */
79 vpColVector q(6, 0);
80 q[0] = 0;
81 q[1] = -M_PI_2;
82 q[2] = M_PI_2;
83 q[3] = -M_PI_2;
84 q[4] = -M_PI_2;
85 q[5] = 0;
86 std::cout << "Move to joint position: " << q.t() << std::endl;
87 robot.setRobotState(vpRobot::STATE_POSITION_CONTROL);
88 robot.setPosition(vpRobot::JOINT_STATE, q);
89
90 // Get current cartesian position
91 vpHomogeneousMatrix fMe = robot.get_fMe();
92
93 // Target 10 cm up in the Z-Axis of the end-effector
94 fMe[2][3] += 0.1;
95
96 // Move to cartesian position
97 robot.setPosition(vpRobot::END_EFFECTOR_FRAME, vpPoseVector(fMe));
98
99 // Come back to initial position
100 robot.setPosition(vpRobot::JOINT_STATE, q);
101
102 // Get current cartesian position
103 vpHomogeneousMatrix fMc = robot.get_fMc();
104
105 // Target 10 cm up in the Z-Axis of the camera frame
106 fMc[2][3] += 0.1;
107
108 // Move to cartesian position
109 robot.setPosition(vpRobot::CAMERA_FRAME, vpPoseVector(fMc));
110
111 }
112 catch (const vpException &e) {
113 std::cout << "ViSP exception: " << e.what() << std::endl;
114 return EXIT_FAILURE;
115 }
116 catch (const std::exception &e) {
117 std::cout << "ur_rtde exception: " << e.what() << std::endl;
118 return EXIT_FAILURE;
119 }
120
121 std::cout << "The end" << std::endl;
122 return EXIT_SUCCESS;
123}
124
125#else
126int main()
127{
128 std::cout << "ViSP is not build with libur_rtde 3rd party used to control a robot from Universal Robots..."
129 << std::endl;
130}
131#endif
Implementation of column vector and the associated operations.
error that can be emitted by ViSP classes.
Definition vpException.h:60
Implementation of an homogeneous matrix and operations on such kind of matrices.
Implementation of a pose vector and operations on poses.
void connect(const std::string &ur_address)
@ JOINT_STATE
Definition vpRobot.h:79
@ CAMERA_FRAME
Definition vpRobot.h:81
@ END_EFFECTOR_FRAME
Definition vpRobot.h:80
@ STATE_POSITION_CONTROL
Initialize the position controller.
Definition vpRobot.h:65