-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiiwa_hardware.pmd
57 lines (50 loc) · 1.57 KB
/
iiwa_hardware.pmd
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
45
46
47
48
49
50
51
52
53
54
55
56
57
group "1.vision-drivers" {
cmd "0.optitrack-driver" {
exec = "python $SPARTAN_BUILD_DIR/externals/optitrack-driver/src/optitrack_client.py";
host = "localhost";
}
cmd "0.openni-driver" {
exec = "openni2-camera-lcm";
host = "localhost";
}
}
group "2.1.iiwa-drivers" {
cmd "0.kuka-driver" {
exec = "kuka_driver --fri_port 30200";
host = "localhost";
}
}
group "2.1.iiwa-sim" {
cmd "0.kuka-sim" {
exec = "$DRAKE_BIN_DIR/drake/examples/kuka_iiwa_arm/iiwa_wsg_simulation";
host = "localhost";
}
}
group "2.2.iiwa-plan-interface" {
cmd "1.iiwa_controller" {
exec = "$DRAKE_BIN_DIR/drake/examples/kuka_iiwa_arm/iiwa_controller";
host = "localhost";
}
cmd "2.state-translator" {
exec = "directorPython $DRAKE_DIR/drake/examples/kuka_iiwa_arm/kuka_iiwa_state_translator.py --director_config $DRAKE_DIR/drake/examples/kuka_iiwa_arm/director_config.json";
host = "localhost";
}
}
group "3.schunk-driver" {
cmd "0.schunk-driver" {
exec = "$SPARTAN_BUILD_DIR/externals/drake-schunk-driver/bazel-bin/src/schunk_driver --gripper_addr 192.168.1.20 --gripper_port 1500 --local_port 1501";
host = "localhost";
}
}
cmd "4.drake-visualizer" {
exec = "$DRAKE_BIN_DIR/tools/drake_visualizer";
host = "localhost";
}
cmd "5.lcm-spy" {
exec = "$DRAKE_BIN_DIR/drake/lcmtypes/drake-lcm-spy";
host = "localhost";
}
cmd "6.signal-scope" {
exec = "signal-scope $SPARTAN_SOURCE_DIR/config/iiwa/kuka_iiwa_signal_scope.py";
host = "localhost";
}