Upload files to 'launch'

This commit is contained in:
cesar.alejandro 2022-03-01 18:06:42 +00:00
parent 5ef1fa2ecf
commit cb5fa1b1af
3 changed files with 60 additions and 0 deletions

7
launch/offboard.launch Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<launch>
<node name="offb" pkg="offboard_ex" type="offb_node" output="screen"/>
</launch>

26
launch/path_follow.launch Normal file
View File

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<launch>
<node
pkg="oscillation_ctrl"
type="LinkState_phi.py"
name="LinkStates"
launch-prefix="xterm -e"
/>
<node
pkg="oscillation_ctrl"
type="ref_signalGen.py"
name="RefSignal"
/>
<node
pkg="oscillation_ctrl"
type="klausen_control.py"
name="OscillationDampen"
launch-prefix="xterm -e"
/>
<node
pkg="oscillation_ctrl"
type="pathFollow_node"
name="pathFollow_node"
launch-prefix="xterm -e"
/>
</launch>

View File

@ -0,0 +1,27 @@
<?xml version="1.0"?>
<launch>
<arg name="test_type" default="step.py" />
<group ns="sim">
<rosparam file="$(find oscillation_ctrl)/config/noCtrl_param.yaml" />
</group>
<node
pkg="oscillation_ctrl"
type="LinkState.py"
name="LinkStates"
launch-prefix="xterm -e"
/>
<node
pkg="oscillation_ctrl"
type="offb_node"
name="offb_node"
launch-prefix="xterm -e"
/>
<node
pkg="oscillation_ctrl"
type="$(arg test_type)"
name="test_node"
launch-prefix="xterm -e"
/>
</launch>