Project

General

Profile

Wiki » History » Version 40

Martin Jacquet, 2021-07-07 14:54

1 23 Gianluca Corsini
h1. Wiki
2
3 20 Gianluca Corsini
{{toc}}
4
5 8 Martin Jacquet
*TODO*:
6 24 Gianluca Corsini
* provide an alternative for joystick
7 8 Martin Jacquet
* adapt paths in airpharo_user as much as possible
8 24 Gianluca Corsini
* use default paths of the EEPROMs in gazebo world (for plugin)
9 40 Martin Jacquet
* how to use GInterface (section III) - ongoing
10 1 Martin Jacquet
11 23 Gianluca Corsini
h2. Prerequisites
12 18 Gianluca Corsini
>
13 27 Gianluca Corsini
The framework has been written and tested using *Ubuntu 18.04*, since it is the OS used by the LAAS-CNRS robotic platform. It should work seamlessly on a recent Linux version, but there is no guaranteet
14 1 Martin Jacquet
The installation on a non-Linux OS has to be handled by the user.
15 2 Martin Jacquet
>
16 18 Gianluca Corsini
The installation assumes the use of a package manager (e.g. @apt@) to install some dependencies, as well as the Gazebo simulator. Everything provided in this repository or by the LAAS-CNRS robotic platform aims to be installed locally in the repository folder to avoid polluting the user's system.
17 1 Martin Jacquet
>
18
In order to use our launcher, it is required to use a USB joystick.
19
>
20
21 23 Gianluca Corsini
h2. I - Software Overview
22 22 Gianluca Corsini
>
23 23 Gianluca Corsini
24
h3. I.1. Openrobots
25 1 Martin Jacquet
>
26 2 Martin Jacquet
Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki
27
>
28 22 Gianluca Corsini
29 23 Gianluca Corsini
h3. I-2. Robotpkg
30 1 Martin Jacquet
>
31 2 Martin Jacquet
"Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community.
32
We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases).
33
>
34
35 23 Gianluca Corsini
h3. I-3. GenoM
36 2 Martin Jacquet
>
37 18 Gianluca Corsini
GenoM is a generator of modules, designed to be middleware independent, i.e. the same module can be compiled for, e.g., ROS, YARP, or Pocolibs, without any modification.
38
This allows a great code re-usability and to abstracts the user from any specific choice of a middleware.
39 1 Martin Jacquet
Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates have been provided.
40 18 Gianluca Corsini
>
41 2 Martin Jacquet
Another specificity of GenoM is the interaction with and between components.
42 18 Gianluca Corsini
Each component is started independently like a Linux executable (within a roscore, for ROS, or a h2 intance, for Pocolibs), then the connection between ports (or topics) is made using a supervisor, "Genomix":https://git.openrobots.org/projects/genomix, either with "Matlab":https://git.openrobots.org/projects/matlab-genomix or "TCL":https://git.openrobots.org/projects/tcl-genomix. 
43 2 Martin Jacquet
>
44 1 Martin Jacquet
45 23 Gianluca Corsini
h3. I-4. Pocolibs
46 18 Gianluca Corsini
>
47 2 Martin Jacquet
"Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS.
48 18 Gianluca Corsini
It aims at being lighter and faster than ROS, when running on a single machine, thanks to the exploitation of shared memory. ROS, on the other hand, uses a network layer for sending messages between nodes, this leads to greater delays and loss of performance.
49 2 Martin Jacquet
>
50
51 23 Gianluca Corsini
h3. I-5. TeleKyb
52 18 Gianluca Corsini
>
53
The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented software developed at LAAS-CNRS.
54 2 Martin Jacquet
In particular, we will use:
55 1 Martin Jacquet
* "pom":https://git.openrobots.org/projects/pom-genom3, a UKF-based state estimator merging state feedback for different sources (e.g. mocap + IMU)
56 18 Gianluca Corsini
* "optitrack":https://git.openrobots.org/projects/optitrack-genom3, to export the motion capture data to the genom software stack
57 2 Martin Jacquet
* "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3, the low-level interface, with either the simulated or real platform
58 18 Gianluca Corsini
* "maneuver":https://git.openrobots.org/projects/maneuver-genom3, a global trajectory planner, providing position and attitude (as quaternions) as well as first and second derivatives. It implements take-off and waypoint-to-waypoint motions. A joystick-based velocity control is implemented, but not used in this project.
59
* "dynamixel":https://git.openrobots.org/projects/dynamixel-genom3, an interface to control the Dynamixel motors. It is used since the gazebo gripper plugin used for the simulation (presented below) adopts the same interface protocol as the Dynamixel motors (precisely Dynamixel Protocol 2.0).
60 11 Martin Jacquet
* "joystick":https://git.openrobots.org/projects/joystick-genom3, a component to read the joystick inputs.
61 2 Martin Jacquet
>
62 22 Gianluca Corsini
63 23 Gianluca Corsini
h3. I-6. Gazebo
64 18 Gianluca Corsini
>
65 2 Martin Jacquet
To simulate the platform, we use the "Gazebo":http://gazebosim.org/ simulator. To interface it with the genom software stack, we use two dedicated components:
66 18 Gianluca Corsini
* "mrsim-gazebo":https://git.openrobots.org/projects/mrsim-gazebo a plugin to interface the simulated multi-rotor with the genom components. It uses "libmrsim":https://git.openrobots.org/projects/libmrsim, a Multi-Robot SIMulator interface, designed to be a transparent interface w.r.t. the real aerial vehicles used in LAAS-CNRS. It makes the transition between simulation and experiments transparent, from the software point of view.
67
* "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses.
68 2 Martin Jacquet
>
69 1 Martin Jacquet
The installation procedure for Gazebo can be found at http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0
70 16 Martin Jacquet
>
71 22 Gianluca Corsini
72 23 Gianluca Corsini
h3. I-7. TCL
73 1 Martin Jacquet
>
74 16 Martin Jacquet
The interaction with the GenoM components is handled using a scripting language, implementing the communication through the "genomix":https://git.openrobots.org/projects/genomix HTTP server.
75
There are two available language interfaces: "matlab":https://git.openrobots.org/projects/matlab-genomix and "tcl":https://git.openrobots.org/projects/tcl-genomix.
76 18 Gianluca Corsini
"eltclsh":https://git.openrobots.org/projects/eltclsh is an in-terminal TCL shell to interact with the components. However, in the following, we provide a TCL-based software that is all-embedded to avoid the use of the inline interaction through eltclsh.
77
>
78 2 Martin Jacquet
79 23 Gianluca Corsini
h2. II - Installation procedure
80 18 Gianluca Corsini
>
81 2 Martin Jacquet
This section is a tutorial on how to install the software architecture to run the simulations.
82
>
83
84 23 Gianluca Corsini
h3. II-0. Clone the Visual and Physical Control Architecture for Flying End-Effector repository
85 18 Gianluca Corsini
>
86 4 Martin Jacquet
Clone the repo associated to this project, using the git daemon. Its root will act as the devel folder for the following.
87 2 Martin Jacquet
<pre><code class="shell">
88 1 Martin Jacquet
git git://redmine.laas.fr/laas/visual-physical-control-architecture.git
89 4 Martin Jacquet
cd ./visual-physical-control-architecture/
90 2 Martin Jacquet
</code></pre>
91 1 Martin Jacquet
>
92 21 Gianluca Corsini
To simplify the installation, we provide a @env.sh@ script that exports all the required variables.
93 24 Gianluca Corsini
In order to run all the installed executables, we need to set up the path to the newly created folders.
94 2 Martin Jacquet
*/!\* the source has to be called in the repository root since it uses the @pwd@ command to export the paths.
95
<pre><code class="shell">
96 1 Martin Jacquet
source env.sh
97
</code></pre>
98 2 Martin Jacquet
>
99 22 Gianluca Corsini
100 24 Gianluca Corsini
h3. II-1. Set up robotpkg
101 1 Martin Jacquet
>
102 2 Martin Jacquet
(Steps taken from http://robotpkg.openrobots.org/install.html)
103 18 Gianluca Corsini
>
104 30 Gianluca Corsini
*1. Clone the robotpkg lastest release*
105 2 Martin Jacquet
106
<pre><code class="shell">
107 1 Martin Jacquet
git clone git://git.openrobots.org/robots/robotpkg
108 2 Martin Jacquet
</code></pre>
109
110 30 Gianluca Corsini
*2. Check that the @openrobots/@ folder exists in the repository root, and update the environment variables accordingly if you didn't source the @env.sh@ file*
111 2 Martin Jacquet
112
<pre><code class="shell">
113
export ROBOTPKG_BASE=`pwd`/openrobots
114
</code></pre>
115
116 30 Gianluca Corsini
*3. Install robotpkg*
117 2 Martin Jacquet
118
<pre><code class="shell">
119
cd robotpkg/bootstrap
120
./bootstrap --prefix=$ROBOTPKG_BASE
121
</code></pre>
122
123 30 Gianluca Corsini
*4. Install the required components and their dependencies*
124 18 Gianluca Corsini
>
125 2 Martin Jacquet
The installation can be done 'manually' by navigating to the desired folder in @./robotpkg/@ and install with @make update@; but we will simplify the process using a _set_.
126
To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file:
127 18 Gianluca Corsini
128 2 Martin Jacquet
<pre><code class="shell">
129
PKG_OPTIONS.%-genom3 = \
130
        codels \
131
        pocolibs-server \
132
        pocolibs-client-c
133
134 28 Gianluca Corsini
PKGSET.myset = \
135 1 Martin Jacquet
    middleware/pocolibs \
136
    architecture/genom3 \
137 2 Martin Jacquet
    architecture/genom3-pocolibs \
138 1 Martin Jacquet
    robots/rotorcraft-genom3 \
139
    localization/pom-genom3 \
140 2 Martin Jacquet
    localization/optitrack-genom3 \
141
    net/genomix \
142
    supervision/tcl-genomix \
143 1 Martin Jacquet
    shell/eltclsh \
144
    simulation/mrsim-gazebo \
145
    simulation/libmrsim \
146 2 Martin Jacquet
    simulation/optitrack-gazebo \
147 1 Martin Jacquet
    joystick-genom3
148
149
PREFER.lapack = robotpkg
150
PREFIX.matlab = <path/to/Matlab>
151
</code></pre>
152 2 Martin Jacquet
153 22 Gianluca Corsini
The last line needs to point to the Matlab root folder in the system (e.g. @/opt/Matlab@).
154
It is recommended to use Matlab for the proposed simulations since the syntax is more intuitive and comprehensible for the user to modify them. However, we also provide all the launch files in tcl, as well as the environment to run them (@shell/eltclsh@ in the above list is a custom tcl script shell).
155 2 Martin Jacquet
If Matlab is not installed on the system, remove the lines @supervision/matlab-genomix \@ and @PREFIX.matlab = <path/to/Matlab>@ from the above list.
156 1 Martin Jacquet
Also, all the above is meant for using Pocolibs, not ROS. Futur version of this tutorial might come to use the ROS install.
157
>
158 2 Martin Jacquet
Now return to the robotpkg folder and install all the set:
159
<pre><code class="shell">
160
cd robotpkg
161 28 Gianluca Corsini
make update-myset
162 1 Martin Jacquet
</code></pre>
163 22 Gianluca Corsini
>
164 1 Martin Jacquet
During the installation, some required dependencies need to be installed with the usual package manager (e.g. @apt@ on Ubuntu). When the install stops, install the required packages and rerun the command above.
165 2 Martin Jacquet
>
166
167 23 Gianluca Corsini
h3. II-2. Install custom components
168 2 Martin Jacquet
>
169 30 Gianluca Corsini
*List of the components*
170 18 Gianluca Corsini
>
171 2 Martin Jacquet
The @src/@ folder contains some additional components, in particular:
172 33 Gianluca Corsini
* *vision-idl*: provides the type declarations regarding the camera modules.
173
* *camgazebo-genom3*: reads the data from the gazebo innate camera, via the gazebo API.
174
* *camviz-genom3*: records and/or displays the images from a camera.
175
* *arucotag-genom3*: detects and filters (EKF-based) the ArUco markers/tags.
176
* *phynt-genom3*: handles the physical interaction (wrench observer and admittance filter).
177
* *uavatt-genom3*: is the attitude controller for fully-actuated UAVs.
178
* *uavpos-genom3*: is the position controller for fully-actuated UAVs.
179
* *visualservoing-genom3*: implements the state machine for the pick-n-place experiment and provides the reference trajectory (either based on visual-servoing, or based on waypoints for takeoff/exploration).
180
* *dynamixel-genom3*: reads and sends data to Dynamixel devices (e.g. motors) that adopt Dynamixel protocols.
181
* *libdynamixel*: provides the type and function declarations used by magdynamixel-gazebo.
182
* *magdynamixel-gazebo*: is a gazebo plugin that emulates a magnetic gripper and adopts the Dynamixel Protocol 2.0.
183 1 Martin Jacquet
>
184 30 Gianluca Corsini
*Install the extra components*
185 1 Martin Jacquet
>
186 22 Gianluca Corsini
Since the extra necessary components are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder.
187 18 Gianluca Corsini
Go to the project root, check that the devel folder exists, export the path if you didn't source the @env.sh@. Then go to the sources folder:
188 2 Martin Jacquet
189
<pre><code class="shell">
190 1 Martin Jacquet
export DEVEL_BASE=`pwd`/devel
191 2 Martin Jacquet
cd src/
192 1 Martin Jacquet
</code></pre>
193 2 Martin Jacquet
194 1 Martin Jacquet
For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager.
195 22 Gianluca Corsini
Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow:
196 1 Martin Jacquet
197 2 Martin Jacquet
<pre><code class="shell">
198 1 Martin Jacquet
cd src/<component>/
199 2 Martin Jacquet
./bootstrap.sh
200
mkdir build
201
cd build
202
../configure --prefix=$DEVEL_BASE --with-templates=pocolibs/client/c,pocolibs/server
203 22 Gianluca Corsini
make install
204 2 Martin Jacquet
</code></pre>
205 1 Martin Jacquet
206
The component @vision-idl@ has to be installed first since it defines some type headers used by others.
207
>
208 2 Martin Jacquet
209 23 Gianluca Corsini
h3. II-3. Set up the environment
210 18 Gianluca Corsini
>
211 2 Martin Jacquet
In order to run all the installed executables, we need to set up the path to the newly created folders.
212 18 Gianluca Corsini
All the required variables are exported in the @env.sh@ file.
213 2 Martin Jacquet
>
214 23 Gianluca Corsini
215 18 Gianluca Corsini
h2. III - Running the simulation
216 2 Martin Jacquet
>
217 18 Gianluca Corsini
>
218 2 Martin Jacquet
219 23 Gianluca Corsini
h3. III-1. GInterface
220 18 Gianluca Corsini
>
221 24 Gianluca Corsini
In order to start all the required software, connect the components together and store the parameters, we use a TCL-based interface.
222
The folder called @ginterface@ contains all the necessary scripts.
223 1 Martin Jacquet
For convenience, we provide as many generic scripts as possible.
224 24 Gianluca Corsini
The next section explains how to set up the GInterface, then how to use it to run the proposed simulation.
225
We also provide the "mission" script used in the experiment presented in the paper, so that the reader can have a glance at the parameters used in this experiment.
226 1 Martin Jacquet
>
227 15 Martin Jacquet
228 24 Gianluca Corsini
h3. III-2. Set up the GInterface
229 18 Gianluca Corsini
>
230 30 Gianluca Corsini
*Install dependencies*
231 25 Gianluca Corsini
>
232 26 Gianluca Corsini
Before being able to run GInterface, the following packages might be required to be installed with the usual package manager (e.g. @apt@ on Ubuntu): @tcllib@, @rsync@, @grsync@, @rpcbind@, @python-pandas@, @python-qt4@.
233 25 Gianluca Corsini
>
234 30 Gianluca Corsini
*Configuration*
235 25 Gianluca Corsini
>
236 26 Gianluca Corsini
In order to configure it, it is necessary to modify the content of the file @airpharo_user.tcl@, whose content is reported below for convenience. This file is located in the GInterface repository inside the folder @users@.
237
Once opened, the content looks like the following:
238 15 Martin Jacquet
239 25 Gianluca Corsini
<pre>
240
#!/bin/sh
241
242
# -*-Tcl-*- \
243
244
exec tclsh "$0" ${1+"$@"}
245
246
set user [dict create \
247
nickname "airpharo_user" \
248
pc_name "pandartin" \
249
ground_station_hostname "pandartin-wifi" \
250
path_tcl "/opt/openrobots/lib/tcl-genomix" \
251
path_rep "/home/mjacquet/RIS/work/ginterface" \
252
path_sup "/home/mjacquet/ginterface" \
253
path_log "/tmp" \
254
path_log_sim "/tmp" \
255
path_launch "/home/mjacquet/RIS/work/ginterface/launchers" \
256
path_devel "/home/mjacquet/RIS/genom_devel" \
257
path_openrobots "/opt/openrobots" \
258
path_gazebo_world "/home/mjacquet/RIS/work/ginterface/gazebo/worlds" \
259
modules {rotorcraft pom optitrack dynamixel joystick uavatt uavpos maneuver phynt arduio t265 arucotag camgazebo visualservoing camviz} \
260 1 Martin Jacquet
]
261
</pre>
262
263 31 Gianluca Corsini
The variables listed below must be modified according to your system setup: 
264 32 Gianluca Corsini
* *pc_name*: refers to the name of your machine, when running simulations, otherwise it should be set to the name of the aerial platform's machine when running experiments. Since these instructions will cover only how to run simulations, set this variable to the name of your machine.
265
* *ground_station_hostname*: refers to the name of your machine, when accessing it through the network (e.g. through @ssh@).
266
* *path_tcl*: is the path to @tcl-genomix@, where the software in robotpkg has been installed. If you followed these instructions it should be set to @<path-to-ginterface>/ginterface/openrobots/lib/tcl-genomix@.
267
* *path_rep*: is the path to the @ginterface@ folder of this repository in your machine.
268
* *path_sup*: is the path to the @ginterface@ folder in the aerial platform's machine. This path is not required for running the provided simulation, thus it can be left unchanged.
269
* *path_log*: is the path where the logs are saved during experiments (precisely in the machine specified at @pc_name@).
270
* *path_log_sim*: is the path where the logs are saved during simulations (precisely in the machine specified at @ground_station_hostname@).
271
* *path_launch*: is the path to the @ginterface/launchers@ folder of this repository in your machine.
272
* *path_devel*: is the path to the @devel@ folder where the extra necessary components have been installed in your machine. If you followed these instructions it should be set to @<path-to-ginterface>/ginterface/devel@.
273
* *path_openrobots*: is the path where the software in robotpkg has been installed in your machine. If you followed these instructions it should be set to @<path-to-ginterface>/ginterface/openrobots@.
274
* *path_gazebo_world*: is the path to the folder @ginterface/gazebo/worlds@ of this repository, where the world files for Gazebo are located. If you followed these instructions it should be set to @<path-to-ginterface>/ginterface/gazebo/worlds@.
275 29 Gianluca Corsini
>
276 1 Martin Jacquet
277
h2. III-3. Run the simulation
278
>
279
280 26 Gianluca Corsini
First of all, source the @env.sh@ file. 
281
Then, connect a USB joystick to your pc, prior to running the simulation.
282 39 Gianluca Corsini
> Compatible models are: XBOX-360 Controller, Logitech Gamepad f310
283 25 Gianluca Corsini
Open a terminal and navigate to the repository root and run the following command:
284
285 1 Martin Jacquet
<pre>
286
$ ./GInterface.tcl
287 25 Gianluca Corsini
</pre>
288 1 Martin Jacquet
289
At this point, the window in the next figure should appear. 
290
>
291 37 Gianluca Corsini
!{width:30%}main_window_ginterface.png!
292 1 Martin Jacquet
>
293 34 Gianluca Corsini
Click on @File@ (pointed by the red arrow in the figure above), then on @Missions@ and select @sim_fiberthex_airpharo@, to run the proposed simulation.
294
After that, @Gazebo@ should be launched, and right after a @XTerm@ console should appear.
295
If everything worked correctly, you will have the situation depicted in the next figure.
296 26 Gianluca Corsini
>
297 38 Gianluca Corsini
!{width:80%}windows-ginterface.png!
298 25 Gianluca Corsini
>
299 35 Gianluca Corsini
Press and hold down for 3s the central button of your joypad until the propellers start to run the message @Armed!@ appears in the @Xterm@ console. 
300
> As soon as, the central button of the joypad is pressed the message @Arming...@ should appear in the @Xterm@ console and, while holding it down, a countdown should be initialized. The countdown will be reset if the central button is released before its end. If so, you have to restart the arming sequence.
301 34 Gianluca Corsini
If everything is well configured, the propellers should spin and the drone should take off.
302 1 Martin Jacquet
>