-
Notifications
You must be signed in to change notification settings - Fork 105
/
wholeBodyPlayer_App.xml.template
44 lines (42 loc) · 1.36 KB
/
wholeBodyPlayer_App.xml.template
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
43
44
<application>
<name>WholeBodyPlayer app</name>
<dependencies>
</dependencies>
<module>
<name>wholeBodyPlayer</name>
<parameters>--robot icub --parts "(head torso left_arm right_arm)"</parameters>
<node>localhost</node>
<dependencies>
<port> /yarpdataplayer/rpc:i </port>
<port> /icubSim/head/state:o </port>
<port> /icubSim/torso/state:o </port>
<port> /icubSim/left_arm/state:o </port>
<port> /icubSim/right_arm/state:o </port>
</dependencies>
</module>
<module>
<name>yarpdataplayer</name>
<parameters></parameters>
<node>localhost</node>
</module>
<connection>
<from>/dataplayer/head/state:o</from>
<to>/wholeBodyPlayerModule/head/state:i</to>
<protocol>udp</protocol>
</connection>
<connection>
<from>/dataplayer/torso/state:o</from>
<to>/wholeBodyPlayerModule/torso/state:i</to>
<protocol>udp</protocol>
</connection>
<connection>
<from>/dataplayer/left_arm/state:o</from>
<to>/wholeBodyPlayerModule/left_arm/state:i</to>
<protocol>udp</protocol>
</connection>
<connection>
<from>/dataplayer/right_arm/state:o</from>
<to>/wholeBodyPlayerModule/right_arm/state:i</to>
<protocol>udp</protocol>
</connection>
</application>