Skip to content

Commit

Permalink
fix: fix dual panda motion generator PID gains not found bug
Browse files Browse the repository at this point in the history
This commit makes sure that the 'arm_id' is taken into account when the
motion generator PID gains are loaded onto the ROS parameter server.
  • Loading branch information
rickstaa committed Mar 21, 2022
1 parent 30dc6b8 commit b1477eb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Add JointPosition and JointVelocity Interface
- Fix: Robot now keeps position when no controller is running
- joint_{position,velocity}_example controller are now available in `franka_gazebo`
- Fix dual panda motion generator PID gains not found bug

## 0.8.2 - 2022-02-22

Expand Down
28 changes: 14 additions & 14 deletions franka_gazebo/config/franka_hw_sim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ franka_gripper:
motion_generators:
position:
gains:
panda_joint1: { p: 600, d: 30, i: 0 }
panda_joint2: { p: 600, d: 30, i: 0 }
panda_joint3: { p: 600, d: 30, i: 0 }
panda_joint4: { p: 600, d: 30, i: 0 }
panda_joint5: { p: 250, d: 10, i: 0 }
panda_joint6: { p: 150, d: 10, i: 0 }
panda_joint7: { p: 50, d: 5, i: 0 }
$(arg arm_id)_joint1: { p: 600, d: 30, i: 0 }
$(arg arm_id)_joint2: { p: 600, d: 30, i: 0 }
$(arg arm_id)_joint3: { p: 600, d: 30, i: 0 }
$(arg arm_id)_joint4: { p: 600, d: 30, i: 0 }
$(arg arm_id)_joint5: { p: 250, d: 10, i: 0 }
$(arg arm_id)_joint6: { p: 150, d: 10, i: 0 }
$(arg arm_id)_joint7: { p: 50, d: 5, i: 0 }
velocity:
gains:
panda_joint1: { p: 30, d: 0, i: 0 }
panda_joint2: { p: 30, d: 0, i: 0 }
panda_joint3: { p: 30, d: 0, i: 0 }
panda_joint4: { p: 30, d: 0, i: 0 }
panda_joint5: { p: 10, d: 0, i: 0 }
panda_joint6: { p: 10, d: 0, i: 0 }
panda_joint7: { p: 5, d: 0, i: 0 }
$(arg arm_id)_joint1: { p: 30, d: 0, i: 0 }
$(arg arm_id)_joint2: { p: 30, d: 0, i: 0 }
$(arg arm_id)_joint3: { p: 30, d: 0, i: 0 }
$(arg arm_id)_joint4: { p: 30, d: 0, i: 0 }
$(arg arm_id)_joint5: { p: 10, d: 0, i: 0 }
$(arg arm_id)_joint6: { p: 10, d: 0, i: 0 }
$(arg arm_id)_joint7: { p: 5, d: 0, i: 0 }

0 comments on commit b1477eb

Please sign in to comment.