Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rosjava Core Gradle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
ROS Java Packages
Rosjava Core Gradle
Commits
3e7e8fe7
Commit
3e7e8fe7
authored
Apr 17, 2012
by
Damon Kohler
Browse files
Options
Downloads
Patches
Plain Diff
Update docs to suggest using command line tools rostopic/rosservice.
parent
e96a3b52
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/src/main/sphinx/getting_started.rst
+20
-4
20 additions, 4 deletions
docs/src/main/sphinx/getting_started.rst
with
20 additions
and
4 deletions
docs/src/main/sphinx/getting_started.rst
+
20
−
4
View file @
3e7e8fe7
...
...
@@ -194,9 +194,16 @@ processes:
issue that will be addressed in the future.
At this point, you should see the familiar "Hello, world!" messages start
appearing in your terminal. You can configure the executed nodes from the
command line in the same way you would any other ROS executable. For example,
the following commands will remap the default topic /chatter to /foo.
appearing in your terminal. You can also echo the topic using the
:roswiki:`rostopic` command line tool:
.. code-block:: bash
rostopic echo chatter
You can configure the executed nodes from the command line in the same way you
would any other ROS executable. For example, the following commands will remap
the default topic /chatter to /foo.
.. code-block:: bash
...
...
@@ -206,6 +213,10 @@ the following commands will remap the default topic /chatter to /foo.
See :roswiki:`Remapping%20Arguments` for more information on passing arguments
to ROS executables.
.. note:: Only the arguments described in :roswiki:`Remapping%20Arguments` are
supported. Support for arbitrary command line arguments (i.e. argv) will be
added in the future.
Services
--------
...
...
@@ -254,7 +265,12 @@ Building and executing these nodes works in the same manner as described above:
./build/rosjava_tutorial_services/bin/rosjava_tutorial_services org.ros.rosjava_tutorial_services.Client
At this point, you should see the log message "2 + 2 = 4" appear in your
terminal.
terminal. You can also access the service using the :roswiki:`rosservice`
command line tool:
.. code-block:: bash
rosservice add_two_ints 2 2
Just as before, you can configure the executed nodes from the command line in
the same way you would any other ROS executable. See
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment