forked from ros-controls/control_msgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd6d0d9
commit ffbf31e
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
std_msgs/Header header | ||
|
||
string[] dof_names | ||
# The set point, that is, the reference. | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint reference_world | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint reference_local | ||
# Current value of the process (ie: latest sensor measurement or estimation on the controlled value). | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint feedback | ||
# Adjusted feedback message for the interpolation in the local frame. | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint feedback_local | ||
# The error of the controlled value, essentially reference - feedback (for a regular PID implementation). | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint error | ||
# Current output of the controller. | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint output_world | ||
trajectory_msgs/MultiDOFJointTrajectoryPoint output_local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# This service enables resetting internal value of a controller with multiple degrees of freedom. | ||
|
||
string[] names | ||
float64[] positions # if present, positions should match size of dof names and also size of velocities/accelerations | ||
float64[] velocities | ||
float64[] accelerations | ||
--- | ||
bool ok |