We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4f83af commit 7bcaff1Copy full SHA for 7bcaff1
lib/body.js
@@ -70,13 +70,17 @@ class Body {
70
trajectory: {
71
/* eslint camelcase:0 */
72
joint_names: this.jointNames[cmd.body_part],
73
- points: [{positions: this.defaultConfigurations[cmd.body_part][cmd.configuration]}],
+ points: [{
74
+ positions: this.defaultConfigurations[cmd.body_part][cmd.configuration],
75
+ time_from_start: {secs: 2},
76
+ }],
77
},
78
goal_time_tolerance: {
79
secs: 5,
80
81
82
});
83
+ console.debug(goal);
84
85
// Send the goal with a default timeout of 10.0 seconds
86
goal.send(10);
0 commit comments