Visual Servoing Platform  version 3.6.1 under development (2024-05-19)
testPololuVelocity.cpp
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2023 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  * Common test for Pololu velocity control of one servo connected to a given channel.
32  */
33 
37 #include <iostream>
38 
39 #include <visp3/core/vpConfig.h>
40 
41 #if defined(VISP_HAVE_POLOLU) && defined(VISP_HAVE_THREADS)
42 
43 #include <chrono>
44 #include <iostream>
45 #include <string>
46 #include <thread>
47 
48 #include <visp3/core/vpMath.h>
49 #include <visp3/robot/vpPololu.h>
50 
51 void usage(const char **argv, int error, const std::string &device, int baudrate, int channel,
52  unsigned short pwm_min, unsigned short pwm_max, float angle_min, float angle_max)
53 {
54  std::cout << "Synopsis" << std::endl
55  << " " << argv[0] << " [--device <name>] [--channel <number>] [--calibrate] [--range-pwm <min max> ] [--verbose, -v] [--help, -h]" << std::endl
56  << std::endl;
57  std::cout << "Description" << std::endl
58  << " --device <name> Device name." << std::endl
59  << " Default: " << device << std::endl
60  << std::endl
61  << " --baud <rate> Serial link baud rate." << std::endl
62  << " Default: " << baudrate << std::endl
63  << std::endl
64  << " --channel <number> Channel to dial with." << std::endl
65  << " Default: " << channel << std::endl
66  << std::endl
67  << " --range-pwm <min max> Set PWM min and max values." << std::endl
68  << " You can use \"--calibrate\" to retrieve min and max pwm values."
69  << " Default: " << pwm_min << " " << pwm_max << std::endl
70  << std::endl
71  << " --range-angles <min max> Set angle min and max values (deg)." << std::endl
72  << " Default: " << vpMath::deg(angle_min) << " " << vpMath::deg(angle_max) << std::endl
73  << std::endl
74  << " --verbose, -v Enable verbosity." << std::endl
75  << std::endl
76  << " --calibrate Start pwm calibration determining min and max admissible values." << std::endl
77  << " Once calibration done you can use \"--range-pwm <min max>\" option to set" << std::endl
78  << " the corresponding values" << std::endl
79  << std::endl
80  << " --help, -h Print this helper message." << std::endl
81  << std::endl;
82  if (error) {
83  std::cout << "Error" << std::endl
84  << " "
85  << "Unsupported parameter " << argv[error] << std::endl;
86  }
87 }
88 
89 int main(int argc, const char **argv)
90 {
91 #ifdef _WIN32
92  std::string opt_device = "COM4";
93 #else
94  std::string opt_device = "/dev/ttyACM0";
95  // Example for Mac OS, the Maestro creates two devices, use the one with the lowest number (the command port)
96  //std::string opt_device = "/dev/cu.usbmodem00031501";
97 #endif
98  int opt_channel = 0;
99  int opt_baudrate = 38400;
100  bool opt_verbose = false;
101  bool opt_calibrate = false;
102  unsigned short opt_pwm_min = 4000;
103  unsigned short opt_pwm_max = 8000;
104  float opt_angle_min = static_cast<float>(vpMath::rad(-45));
105  float opt_angle_max = static_cast<float>(vpMath::rad(45));
106  float opt_velocity = static_cast<float>(vpMath::rad(5));
107  float last_angle = 0;
108 
109  for (int i = 1; i < argc; i++) {
110  if (std::string(argv[i]) == "--device" && i + 1 < argc) {
111  opt_device = std::string(argv[i + 1]);
112  i++;
113  }
114  else if (std::string(argv[i]) == "--baud" && i + 1 < argc) {
115  opt_baudrate = std::atoi(argv[i + 1]);
116  i++;
117  }
118  else if (std::string(argv[i]) == "--channel" && i + 1 < argc) {
119  opt_channel = std::atoi(argv[i + 1]);
120  i++;
121  }
122  else if (std::string(argv[i]) == "--range-pwm" && i + 2 < argc) {
123  opt_pwm_min = static_cast<unsigned short>(vpMath::rad(std::atoi(argv[i + 1])));
124  opt_pwm_max = static_cast<unsigned short>(vpMath::rad(std::atoi(argv[i + 2])));
125  i += 2;
126  }
127  else if (std::string(argv[i]) == "--range-angles" && i + 2 < argc) {
128  opt_angle_min = static_cast<float>(std::atof(argv[i + 1]));
129  opt_angle_max = static_cast<float>(std::atof(argv[i + 2]));
130  i += 2;
131  }
132  else if (std::string(argv[i]) == "--calibrate") {
133  opt_calibrate = true;
134  }
135  else if (std::string(argv[i]) == "--verbose" || std::string(argv[i]) == "-v") {
136  opt_verbose = true;
137  }
138  else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
139  usage(argv, 0, opt_device, opt_baudrate, opt_channel, opt_pwm_min, opt_pwm_max, opt_angle_min, opt_angle_max);
140  return EXIT_SUCCESS;
141  }
142  else {
143  usage(argv, i, opt_device, opt_baudrate, opt_channel, opt_pwm_min, opt_pwm_max, opt_angle_min, opt_angle_max);
144  return EXIT_FAILURE;
145  }
146  }
147 
148  std::chrono::seconds sec(1);
149 
150  try {
151  // Creating the servo object on channel 0
152  vpPololu servo(opt_verbose);
153 
154  servo.connect(opt_device, opt_baudrate, opt_channel);
155 
156  if (opt_calibrate) {
157  std::cout << "Proceed to calibration to determine pwm min and max values..." << std::endl;
158  std::cout << "WARNING: Calibration will move the servo at channel " << opt_channel << "!" << std::endl;
159  std::cout << "Press Enter to move to min and max pwm positions..." << std::endl;
160  std::cin.ignore();
161 
162  unsigned short pwm_min, pwm_max;
163  servo.calibrate(pwm_min, pwm_max);
164  std::cout << "Servo on channel " << opt_channel << " has pwm range [" << pwm_min << ", " << pwm_max << "]" << std::endl;
165  return EXIT_SUCCESS;
166  }
167 
168  servo.setPwmRange(opt_pwm_min, opt_pwm_max);
169  servo.setAngularRange(opt_angle_min, opt_angle_max);
170 
171  // Servo will move to 0 angle at a max velocity in rad/s
172  std::cout << "Move to zero position (deg): " << vpMath::deg(0) << " at max velocity" << std::endl;
173  servo.setAngularPosition(0, 0);
174  std::this_thread::sleep_for(std::chrono::seconds(3));
175  last_angle = servo.getAngularPosition();
176  std::cout << "Servo reached position (deg): " << vpMath::deg(last_angle) << std::endl;
177 
178  if (1) {
179  // Servo will first move in one direction at a velocity of 10 for 3 sec and move back in the other direction for 3 sec
180  short vel_pwm = 10;
181  std::cout << "Move at velocity (pwm): " << vel_pwm << " for 3 sec" << std::endl;
182  servo.setPwmVelocity(vel_pwm);
183  std::this_thread::sleep_for(3 * sec);
184  std::cout << "Servo reached position (pwm): " << servo.getPwmPosition() << std::endl;
185 
186  vel_pwm = -10;
187  std::cout << "Move at velocity (pwm): " << vel_pwm << " for 3 sec" << std::endl;
188  servo.setPwmVelocity(vel_pwm);
189  std::this_thread::sleep_for(3 * sec);
190  std::cout << "Servo reached position (pwm): " << servo.getPwmPosition() << std::endl;
191  std::cout << "End of velocity motion" << std::endl;
192  }
193 
194  // Servo will first move in one direction at a velocity of 10 for 3 sec and move back in the other direction for 3 sec
195  std::cout << "Move at velocity (deg/s): " << vpMath::deg(opt_velocity) << " for 3 sec" << std::endl;
196  servo.setAngularVelocity(opt_velocity);
197  std::this_thread::sleep_for(3 * sec);
198  std::cout << "Servo reached position (deg): " << servo.getPwmPosition() << std::endl;
199 
200  std::cout << "Move at velocity (deg/s): " << vpMath::deg(-opt_velocity) << " for 3 sec" << std::endl;
201  servo.setAngularVelocity(-opt_velocity);
202  std::this_thread::sleep_for(3 * sec);
203  std::cout << "Servo reached position (deg): " << servo.getPwmPosition() << std::endl;
204 
205  // Stopping the velocity command.
206  servo.stopVelocityCmd();
207 
208  std::cout << "The end" << std::endl;
209 
210  return EXIT_SUCCESS;
211  }
212  catch (const vpException &e) {
213  std::cout << e.getMessage() << std::endl;
214  return EXIT_FAILURE;
215  }
216 }
217 
218 #else
219 int main()
220 {
221  std::cout << "ViSP doesn't support Pololu 3rd party library" << std::endl;
222 }
223 #endif
error that can be emitted by ViSP classes.
Definition: vpException.h:59
const char * getMessage() const
Definition: vpException.cpp:64
static double rad(double deg)
Definition: vpMath.h:127
static double deg(double rad)
Definition: vpMath.h:117
Interface for the Pololu Maestro USB Servo Controllers.
Definition: vpPololu.h:75