Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document the <topic> option for JointPositionController. #1309

Merged
merged 1 commit into from
Jan 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ namespace systems
///
/// A new Ignition Transport topic is created to send target joint positions.
/// The topic name is
/// "/model/<model_name>/joint/<joint_name>/<joint_index>/cmd_pos"
/// "/model/<model_name>/joint/<joint_name>/<joint_index>/cmd_pos".
///
/// This topic accepts ignition::msgs::Double values representing the target
/// position.
/// position. If you wish to change the topic on which this plugin listens
/// you may use the `<topic>` parameter to specify which topic the plugin
/// should listen on.
///
/// ## System Parameters
///
Expand Down Expand Up @@ -75,6 +77,10 @@ namespace systems
/// `<use_velocity_commands>` Bypasses the PID and creates a perfect
/// position. The maximum speed on the joint can be set using the `<cmd_max>`
/// tag.
///
/// `<topic>` If you wish to listen on a non-default topic you may specify it
/// here, otherwise the controller defaults to listening on
/// "/model/<model_name>/joint/<joint_name>/<joint_index>/cmd_pos".
class JointPositionController
: public System,
public ISystemConfigure,
Expand Down