Skip to content

Commit

Permalink
Improves franka_gazebo gripper PID gains
Browse files Browse the repository at this point in the history
This commit improves the gripper PID gains since the old gains caused
the gripper to oscillate around a given setpoint (see frankaemika#172).
  • Loading branch information
rickstaa committed Oct 4, 2021
1 parent 3ca5236 commit c4ec516
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions franka_gazebo/config/franka_hw_sim.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
arm_id: $(arg arm_id)

m_ee: 0.76
m_ee: 0.76
franka_gripper:
type: franka_gazebo/FrankaGripperSim
arm_id: $(arg arm_id)
type: franka_gazebo/FrankaGripperSim
arm_id: $(arg arm_id)

finger1:
gains: { p: 100, i: 25, d: 20 }
gains: { p: 1000, i: 0, d: 0 }

finger2:
gains: { p: 100, i: 25, d: 20 }
gains: { p: 1000, i: 0, d: 0 }

0 comments on commit c4ec516

Please sign in to comment.