-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from ICube-Robotics/tpoignonec-optionnal_cmd_msg
Tpoignonec optionnal cmd msg + other features
- Loading branch information
Showing
7 changed files
with
66 additions
and
55 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
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
17 changes: 6 additions & 11 deletions
17
pytrollercli/pytrollercli/resource/src/pytroller_parameters.yaml.em
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 |
---|---|---|
@@ -1,21 +1,16 @@ | ||
@(pytroller_name): | ||
joints: { | ||
interface_full_names: { | ||
type: string_array, | ||
default_value: [], | ||
description: "Name of the joints to control", | ||
} | ||
interface_name: { | ||
type: string, | ||
default_value: "", | ||
description: "Name of the interface to command", | ||
description: "Name (WARNING, full names, e.g., 'joint_1/effort') of the interface(s) to command", | ||
} | ||
command_topic_name: { | ||
type: string, | ||
default_value: "~/commands", | ||
description: "Name of the subscribed command topic" | ||
default_value: "", | ||
description: "Optional. Name of the subscribed command topic" | ||
} | ||
command_topic_type: { | ||
type: string, | ||
default_value: "std_msgs/msg/Float64MultiArray", | ||
description: "Type of the subscribed command topic" | ||
default_value: "", | ||
description: "Optional. Type of the subscribed command topic" | ||
} |
10 changes: 6 additions & 4 deletions
10
pytrollercli/pytrollercli/resource/test/test_params.yaml.em
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
load_@(pytroller_name): | ||
ros__parameters: | ||
joints: ["joint1", "joint2"] | ||
interface_name: "position" | ||
interface_full_names: | ||
- "joint1/position" | ||
- "joint2/position" | ||
command_topic_name: "~/commands" | ||
command_topic_type: "std_msgs/msg/Float64MultiArray" | ||
|
||
test_@(pytroller_name): | ||
ros__parameters: | ||
joints: ["joint1", "joint2"] | ||
interface_name: "position" | ||
interface_full_names: | ||
- "joint1/position" | ||
- "joint2/position" | ||
command_topic_name: "~/commands" | ||
command_topic_type: "std_msgs/msg/Float64MultiArray" |