Skip to content

Commit

Permalink
Use real velocity limits for end effector teleop demo
Browse files Browse the repository at this point in the history
They were set very conservatively (0.15 of the true limits) to keep people from breaking the hardware.  But I want people's first experience in sim to be more positive.
  • Loading branch information
RussTedrake committed Feb 4, 2019
1 parent 444dd8f commit 7d88d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/manipulation_station/end_effector_teleop.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def CopyPositionOut(self, context, output):
help="Time constant for the first order low pass filter applied to"
"the teleop commands")
parser.add_argument(
"--velocity_limit_factor", type=float, default=0.15,
"--velocity_limit_factor", type=float, default=1.0,
help="This value, typically between 0 and 1, further limits the iiwa14 "
"joint velocities. It multiplies each of the seven pre-defined "
"joint velocity limits. "
Expand Down

0 comments on commit 7d88d62

Please sign in to comment.