Skip to content

Commit 11653b9

Browse files
authored
Merge pull request #82 from aerostack2/update-add-drones-docs
Update adding external drones documentation.
2 parents 5192736 + 1aa0103 commit 11653b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/_09_development/_develop_guide/_develop_guide/_create_gazebo_assets.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ For the quadrotor, this template assumes your model has 4 links, one for each ro
247247
they are named m1_joint, m2_joint, m3_joint and m4_joint. These names can be changed to match your links names. The '_joint' is, however, necessary (if m1 is changed for YOUR_LINK, then its joint would have to be YOUR_LINK_joint).
248248
In addition to this, the base link of your quadrotor model must be 'base_link'.
249249

250-
For your model to be properly loaded by Aerostack2, it has to be added as a valid drone type at ``as2_gazebo_assets/src/as2_gazebo_assets/models/drone.py``. This script declares a class ``DroneTypeEnum`` to which your new drone model must be added.
250+
With this and your model added to a directory that has been added to the Gazebo resources path variable (check :ref:`this section <development_tutorials_gazebo_assets_objects>` of the adding Gazebo assets tutorial), your new drone is ready to be loaded by Gazebo and fly using Aerostack2. Make sure you use the name of the model folder as the ``model_type`` field when configuring your new drone in your simulation configuration file.
251+
252+
Although it is not necessary, if you are building Aerostack2 from source, your model can also be added as a valid drone type at ``as2_gazebo_assets/src/as2_gazebo_assets/models/drone.py``. This script declares a class ``DroneTypeEnum`` to which your new drone model can be added.
251253

252254
.. code-block:: python
253255
@@ -261,7 +263,6 @@ For your model to be properly loaded by Aerostack2, it has to be added as a vali
261263
PX4 = 'px4vision'
262264
YOUR_MODEL_TYPE = 'your_model_type'
263265
264-
With this and your model added to a directory that has been added to the Gazebo resources path variable (check :ref:`this section <development_tutorials_gazebo_assets_objects>` of the adding Gazebo assets tutorial), your new drone is ready to be loaded by Gazebo and fly using Aerostack2.
265266
266267
.. _development_guide_create_assets_add_sensor:
267268

0 commit comments

Comments
 (0)