forked from ros-controls/ros2_controllers
-
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.
Signed-off-by: Paul Gesel <[email protected]>
- Loading branch information
Showing
5 changed files
with
123 additions
and
19 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
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
59 changes: 59 additions & 0 deletions
59
gripper_controllers/src/gripper_action_controller_parameters.yaml
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,59 @@ | ||
gripper_action_controller: | ||
action_monitor_rate: { | ||
type: double, | ||
default_value: 20.0, | ||
description: "Hz", | ||
validation: { | ||
gt_eq: [ 0.1 ] | ||
}, | ||
} | ||
joint: { | ||
type: string, | ||
default_value: "", | ||
} | ||
goal_tolerance: { | ||
type: double, | ||
default_value: 0.01, | ||
validation: { | ||
gt_eq: [ 0.0 ] | ||
}, | ||
} | ||
max_effort: { | ||
type: double, | ||
default_value: 0.0, | ||
description: "Max allowable effort", | ||
validation: { | ||
gt_eq: [ 0.0 ] | ||
}, | ||
} | ||
allow_stalling: { | ||
type: bool, | ||
description: "Allow stalling will make the action server return success if the gripper stalls when moving to the goal", | ||
default_value: false, | ||
} | ||
stall_velocity_threshold: { | ||
type: double, | ||
description: "stall velocity threshold", | ||
default_value: 0.001, | ||
} | ||
stall_timeout: { | ||
type: double, | ||
description: "stall timeout", | ||
default_value: 1.0, | ||
} | ||
force_multiplier: { | ||
type: double, | ||
description: "Scales the maximum effort of the gripper defined in the URDF", | ||
default_value: 1.0, | ||
validation: { | ||
bounds<>: [ 0.0, 1.0 ] | ||
}, | ||
} | ||
speed_multiplier: { | ||
type: double, | ||
description: "Scales the default velocity of the gripper defined in the URDF", | ||
default_value: 1.0, | ||
validation: { | ||
bounds<>: [ 0.0, 1.0 ] | ||
}, | ||
} |
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