-
Notifications
You must be signed in to change notification settings - Fork 103
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 #2 from ori-drs/feature/simplified
Feature/simplified
- Loading branch information
Showing
1 changed file
with
14 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
<?xml version="1.0"?> | ||
|
||
<launch> | ||
<node pkg="vicon_bridge" type="vicon_bridge" name="vicon" output="screen"> | ||
<param name="stream_mode" value="ClientPull" type="str" /> | ||
<!--param name="datastream_hostport" value="192.168.0.13:801" type="str" /--> | ||
<param name="datastream_hostport" value="vicon:801" type="str" /> | ||
<param name="tf_ref_frame_id" value="/world" type="str" /> | ||
</node> | ||
|
||
<!-- IP and port on Vicon Windows PC --> | ||
<arg name="datastream_hostport" default="192.168.94.81:801"/> | ||
<!-- Fixed vicon world frame --> | ||
<arg name="vicon_world_frame" default="/vicon/world"/> | ||
|
||
<node pkg="vicon_bridge" type="vicon_bridge" name="vicon" output="screen" > | ||
<param name="stream_mode" value="ServerPush"/> | ||
<param name="datastream_hostport" value="$(arg datastream_hostport)"/> | ||
<param name="tf_ref_frame_id" value="$(arg vicon_world_frame)"/> | ||
</node> | ||
|
||
</launch> |