I'm building a Gazebo simulation of a robotic arm (Panda) mounted on a differential drive platform. MoveIt2 is working well with the arm, thanks to the Setup Assistant, but I’m facing an issue with the gripper:
Since I'm using ODE in Gazebo, I can't define a mimic joint between the two gripper fingers.
The GripperActionController only accepts a single joint, so I can't add an extra joint to synchronize both fingers.
I can't switch to Bullet physics because it prevents my differential drive platform from rotating, even with torsional friction set to 0 (as suggested here).
Is there another type of controller that could handle this? Or is there a workaround to achieve proper gripper synchronization in this setup?
Thanks in advance!