Skip to content

Commit 99280a8

Browse files
author
Murilo Marinho
committed
[gazebo] Added quickstart screenshot.
1 parent a0f2428 commit 99280a8

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed
831 KB
Loading

docs/source/gazebo/installation.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ After installation, :program:`Gazebo Harmonic` can be run with the following com
3535
3636
gz sim
3737
38+
Which should result in something similar to the following, if the installation went well.
39+
I would recommend strongly against letting the curiosity get the best of you and clicking on the ``3d_shapes.sdf`` given that it's current freezing my virtual machines.
40+
Other
41+
42+
.. image:: images/screen_quickstart.png
43+
:width: 100%
44+
45+
Basic functionality of :program:`Gazebo`
46+
----------------------------------------
47+
48+
We can start by choosing the file :file:`ackermann_steering.sdf`
3849

3950
.. _curl: https://curl.se/
4051
.. _`lsb-release`: https://packages.debian.org/sid/lsb-release

docs/source/inspecting_services.rst

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,21 +120,32 @@ It is important to know of the existence of ``service introspection``. Although
120120
After proper configuration of the server and client, :program:`ros2 service echo` allows us to look at what information is being exchanged between participants. It helps not having to
121121
add endless ``print`` functions throughout the code that hurt performance.
122122

123+
We'll be working in these files
124+
125+
.. code-block:: console
126+
127+
python_package_that_uses_the_services
128+
`-- python_package_that_uses_the_services
129+
|-- add_points_service_client_introspection_node.py
130+
`-- add_points_service_server_introspection_node.py
131+
123132
124133
.. tab-set::
125134

126-
.. tab-item:: add_points_service_client_introspection_node.py
135+
.. tab-item:: Introspection Client
127136

128-
:download:`add_points_service_client_introspection_node.py <../../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_client_introspection_node.py>`
137+
:download:`add_points_service_client_introspection_node.py <../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_client_introspection_node.py>`
129138

130-
.. literalinclude:: ../../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_client_introspection_node.py
139+
.. literalinclude:: ../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_client_introspection_node.py
131140
:language: python
132141
:linenos:
142+
:lines: 24-
133143

134-
.. tab-item:: add_points_service_server_introspection_node.py
144+
.. tab-item:: Introspection Server
135145

136-
:download:`add_points_service_server_introspection_node.py <../../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_server_introspection_node.py>`
146+
:download:`add_points_service_server_introspection_node.py <../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_server_introspection_node.py>`
137147

138-
.. literalinclude:: ../../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_server_introspection_node.py
148+
.. literalinclude:: ../../ros2_tutorial_workspace/src/python_package_that_uses_the_services/python_package_that_uses_the_services/add_points_service_server_introspection_node.py
139149
:language: python
140150
:linenos:
151+
:lines: 24-

0 commit comments

Comments
 (0)