Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
franka_description
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
CeTI
ROS
ROS Packages
franka_description
Commits
bf6f9653
Commit
bf6f9653
authored
5 years ago
by
Christoph Jähne
Browse files
Options
Downloads
Patches
Plain Diff
support robot ips as launch arg in combined control launch
parent
276ad677
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
franka_control/launch/franka_combined_control.launch
+6
-0
6 additions, 0 deletions
franka_control/launch/franka_combined_control.launch
with
6 additions
and
0 deletions
franka_control/launch/franka_combined_control.launch
+
6
−
0
View file @
bf6f9653
...
...
@@ -15,6 +15,10 @@
<!-- The config file containing all parameters for the combined hardware node like the IPs of the robots etc. -->
<arg
name=
"hw_config_file"
default=
"$(find franka_control)/config/franka_combined_control_node.yaml"
/>
<!-- Optional arg to manually configure the ips of all robots, overwriting ips that are configured in hw_config_file -->
<!-- The ips must be set as dictionary like {<arm_id_1>/robot_ip: <my_ip_1>, <arm_id_2>/robot_ip: <my_ip_2>} -->
<arg
name=
"robot_ips"
default=
"{}"
/>
<!-- The config file containing the parameterization for all controllers to start with this launch file -->
<arg
name=
"controllers_file"
default=
"$(find franka_control)/config/default_combined_controllers.yaml"
/>
...
...
@@ -26,6 +30,8 @@
<node
name=
"$(arg robot_id)"
pkg=
"franka_control"
type=
"franka_combined_control_node"
output=
"screen"
required=
"true"
>
<rosparam
command=
"load"
file=
"$(arg hw_config_file)"
/>
<!-- Add or overwrite manually configured ips -->
<rosparam
subst_value=
"True"
>
$(arg robot_ips)
</rosparam>
<param
name=
"robot_description"
command=
"xacro --inorder $(arg robot) $(arg args)"
/>
</node>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment