-
Notifications
You must be signed in to change notification settings - Fork 0
/
on_pyrene.launch
42 lines (36 loc) · 1.63 KB
/
on_pyrene.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<launch>
<machine name="multimedia" address="talos-1m"
env-loader="/home/pal/devel/config_roslaunch.sh"/>
<arg name="plank_of_wood_id" default="2" />
<!-- World setup -->
<include file="$(find agimus_demos)/launch/talos_manipulate_boxes_world_setup.launch">
<arg name="plank_of_wood_id" value="$(arg plank_of_wood_id)" />
<arg name="simulation" value="false" />
</include>
<!-- Initialization of robot root_joint pose as a ROS param
value = "x y z X Y Z W" where Xi+Yj+Zk+W is a quaternion -->
<param name="robot_initial_pose"
value="0.1 -0.65 1.0192720229567027 0 0 0.7071067811865476 0.7071067811865476"/>
<!-- SoT parameters -->
<arg name="script_file" doc="Full path to the script which initialize the supervisor"
default="$(find agimus_demos)/talos/manipulate_boxes/supervisor.py" />
<include file="$(find roscontrol_sot_talos)/launch/sot_talos_controller.launch" >
</include>
<!--This starts the HPP interface in namespace agimus/hpp-->
<group ns="agimus/hpp">
<node name="hpp_node" pkg="agimus-hpp" type="hpp_node.py"
args="hpp-manipulation-server" respawn="true"
machine="multimedia"
output="screen" />
</group>
<!--This starts sot supervisor in namespace agimus/sot-->
<include file="$(find agimus-sot)/launch/supervisor.launch" >
<arg name="script_file" value="$(arg script_file)"/>
<arg name="robot_prefix" value="talos/"/>
<arg name="simulate_torque_feedback" value="false"/>
</include>
<include file="$(find agimus)/launch/path_execution.launch">
<arg name="machine" value="multimedia"/>
<arg name="gui" value="false"/>
</include>
</launch>