rospy_tutorials¶
Contents:
Summary¶
-
rospy_tutorials
¶ Version: 0.6.0
Description: This package attempts to show the features of ROS python API step-by-step, including using messages, servers, parameters, etc. These tutorials are compatible with the nodes in roscpp_tutorial.
Maintainers: - Dirk Thomas <dthomas AT osrfoundation DOT org>
Licenses: - BSD
Urls: - website<http://www.ros.org/wiki/rospy_tutorials>
- bugtracker<https://github.com/ros/ros_tutorials/issues>
- repository<https://github.com/ros/ros_tutorials>
Authors: - Ken Conley
BuildDepends: BuildtoolDepends: BuildExportDepends: ExecDepends:
Types¶
Service types¶
-
rospy_tutorials/BadTwoInts
¶ Field (Request): - a (int64) –
- b (int32) –
Field (Response): - sum (int32) –
Bad version of AddTwoInts for unit testing
# Bad version of AddTwoInts for unit testing int64 a int32 b --- int32 sum
-
rospy_tutorials/AddTwoInts
¶ Field (Request): - a (int64) –
- b (int64) –
Field (Response): - sum (int64) –
int64 a int64 b --- int64 sum