Skip to content
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

Support for robot namespace #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dobot_bringup/launch/bringup.launch
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<!-- robot_ip: IP-address of the robot's socket-messaging server -->
<arg name="robot_ip" doc="IP of the controller" default="192.168.5.1"/>

<node name="$(env DOBOT_TYPE)_robot" pkg="dobot_bringup" type="dobot_bringup" output="screen" >
<arg name="namespace" doc="Namespace of the robot" default="/"/>
<node ns="$(arg namespace)" name="$(env DOBOT_TYPE)_robot" pkg="dobot_bringup" type="dobot_bringup" output="screen" >
<param name="joint_publish_rate" type="double" value="10" />
<param name="trajectory_duration" type="double" value="0.1" />
<param name="robot_ip_address" type="str" value="$(arg robot_ip)"/>
Expand Down
Loading