modified launch file
This commit is contained in:
parent
90ce72e181
commit
c7f0cd55a7
1 changed files with 30 additions and 8 deletions
|
@ -8,7 +8,18 @@
|
||||||
<arg name="Transform" value="1" />
|
<arg name="Transform" value="1" />
|
||||||
<arg name="Dashboard" value="0" />
|
<arg name="Dashboard" value="0" />
|
||||||
<arg name="enableMotor" value="1" />
|
<arg name="enableMotor" value="1" />
|
||||||
|
<arg name="enableWlanScan" value="1" />
|
||||||
|
<arg name="enableGmapping" value="1" />
|
||||||
|
<arg name="enableBagging" value="1" />
|
||||||
|
|
||||||
|
<!-- Set wifi interface and start wlan logging -->
|
||||||
|
<group if="$(arg enableWlanScan)" >
|
||||||
|
<param name="wlan_interface_24G" type="string" value="wlx801f02c608aa" />
|
||||||
|
<param name="wlan_interface_5G" type="string" value="wlx801f02c608aa" />
|
||||||
|
<node pkg="wlan_pioneer" name="wlanSignal" type="wlanSignal" />
|
||||||
|
</group>
|
||||||
|
|
||||||
|
<!-- Enable the motor with rostopic pub -->
|
||||||
<group if="$(arg enableMotor)" >
|
<group if="$(arg enableMotor)" >
|
||||||
<node name="rostopic" pkg="rostopic" type="rostopic" args="pub -1 /cmd_motor_state p2os_msgs/MotorState 1"/>
|
<node name="rostopic" pkg="rostopic" type="rostopic" args="pub -1 /cmd_motor_state p2os_msgs/MotorState 1"/>
|
||||||
</group>
|
</group>
|
||||||
|
@ -49,5 +60,16 @@
|
||||||
</group>
|
</group>
|
||||||
|
|
||||||
<include file="$(find p2os_urdf)/launch/pioneer3dx_urdf.launch"/>
|
<include file="$(find p2os_urdf)/launch/pioneer3dx_urdf.launch"/>
|
||||||
|
|
||||||
|
|
||||||
|
<group if="$(arg enableGmapping)" >
|
||||||
|
<include file="$(find p2os_launch)/launch/gmapping.launch" />
|
||||||
|
</group>
|
||||||
|
|
||||||
|
<group if="$(arg enableBagging)" >
|
||||||
|
<node pkg="rosbag" type="record" name="rosbag_record_wlan"
|
||||||
|
args="record -o /tmp/wlan_pioneer /pose /sonar /scan /slam_gmapping/entropy /tf /base_scan /wlan_signal" />
|
||||||
|
</group>
|
||||||
|
|
||||||
</launch>
|
</launch>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue