forked from ros-drivers/microstrain_mips
-
Notifications
You must be signed in to change notification settings - Fork 77
/
gq7.launch
25 lines (21 loc) · 950 Bytes
/
gq7.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.1"?>
<!-- Standalone example launch file to launch a node that interfaces with a GQ7 -->
<launch>
<!-- Specify our custom params file to the microstrin launch file -->
<include file="$(find microstrain_inertial_driver)/launch/microstrain.launch">
<arg name="namespace" value="/" />
<arg name="params_file" value="$(find microstrain_inertial_examples)/config/gq7/gq7.yml" />
</include>
<!-- Publish a static transform for where the GQ7 is mounted on base_link. -->
<!-- Unless the GQ7 is mounted exactly at base_link, you should change this to be accurate to your setup -->
<node
pkg="tf"
type="static_transform_publisher"
name="base_link_gq7_link_static_transform"
output="screen"
args="
0 0 0 0 0 0 base_link gq7_link 1000
" />
<!-- Start RViz -->
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find microstrain_inertial_examples)/config/gq7/display.rviz" />
</launch>