-
Notifications
You must be signed in to change notification settings - Fork 91
Multi-robot setup #116
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
base: noetic
Are you sure you want to change the base?
Multi-robot setup #116
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @tenny-yinyijun, thank you for opening this pull request! I think this will be very helpful to those looking to run multi-robot experiments. I've left some feedback below. Let me know if you have any questions about it. If it would help to go through it on a video call, I'd be happy to meet with you.
<remap from="cmd_vel" to="/stretch_defaultname/cmd_vel" /> | ||
<remap from="joint_states" to="/stretch_defaultname/joint_states" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of remapping these topics in this launch file, we'll move the remapping inside the stretch_driver node. We'll delve into this in the next revision.
@@ -9,7 +9,7 @@ | |||
type="joint_state_publisher" > | |||
<param name="rate" value="30.0"/> | |||
<rosparam param="source_list"> | |||
[/stretch/joint_states] | |||
[stretch_defaultname/joint_states] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of changing the rosparam in this launch file, we'll move it inside the stretch_driver node. We'll delve into this in the next revision.
Co-authored-by: Janna Lin <[email protected]>
fe1acf9
to
9566763
Compare
Hello, this is Janna and Tenny! Here are the changes we made for the multi-robot setup. In our version:
We combined these changes in the same stretch_ros package, so the users need to change stretch_ros on the computer and robot separately as mentioned above. Thank you!