[Question] How to change the transformation direction of gripper #2065
Unanswered
harshp1509
asked this question in
Q&A
Replies: 2 comments
-
Thank you for posting this. It may have to do with how your robot was imported. I'll move this to our Discussions section for the team to follow up. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Following up, your myArm M750 is likely not lifting the cube because the end-effector frame’s orientation does not match the convention expected by your control code. Adjust the frame transform in your configuration, and check the gripper’s physical parameters. Here is a summary with some guidance and troubleshooting for you to consider. 1. Frame Transform and Coordinate System DirectionBackground
How to Diagnose
How to Fix
Example:# This is a generic example; adjust the rotation as needed for your robot
from omni.isaac.core.utils.rotations import euler_angles_to_quat
ee_offset = OffsetCfg(
pos=[0.0, 0.0, 0.1034], # Adjust as needed
rot=euler_angles_to_quat([0, 0, 3.1416]), # 180 degrees about Z
)
2. Gripper Physics and Contact Properties
How to Check
3. Summary of Action Steps
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Question
i am trying lift the cube using myarm m750 but arm is not able to lift the cube . so i was thinking that it was because of frame transformation direction .
in the Franka robot case blue color array direction is in the finger direction but in my case it is in opposite direction.
i have follow the franka usecase and franka is working fine but in myarm m750 case it is not lifting cube.
what is the reason behind this problem????
reference:
Beta Was this translation helpful? Give feedback.
All reactions