-
Notifications
You must be signed in to change notification settings - Fork 131
Description
Hi I just finished assembling GELLO and was running the sim_franka version of the environment to check for everything working properly. After some re-calibration It worked fine.
However I noticed that Franka gripper value in the simulator were mapped a bit weirdly. When checking the panda/finger_joint values it fluctuates between [8e-06, 0.000153] #gripper: (open, close) and the panda/actuator for the fingers, between [0.0541, 0.994]. It seems like the actuator values are fine but not the gripper joint values? The gripper is constantly closed.
I double-checked on Dynamixel-wizard the Gripper position value, to make sure it wasn't mis-match of calibration and the calibration value I got (191, 149) seemed to correspond pretty well with what the dynamixel-wizard was showing.
Also:
on Line 124
gello_software/experiments/run_env.py
Line 124 in e6a660d
| agent = GelloAgent(port=gello_port, start_joints=args.start_joints) |
I think it is supposed to be start_joints=reset_joints and in line 123 reset_joints = np.array(args.start_joints) (otherwise the code errors when start_joints are handed through command-line args, since it is given as tuple and not np.ndarray)