You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the scripts in the examples/ folder of LeRobot
My own task or dataset (give details below)
Reproduction
Hi Guys, I am using the pr #316 written by Cadene to control the real aloha robot, when running cmd : python control_robot.py teleoperate --robot aloha, I found the follower move fast to HORIZONTAL_POSITION, all arms in HORIZONTAL_POSITION like a line. When I control the follower arm with the master arm, I find that the movement direction of the follower arm is exactly opposite to that of the master arm.
I thinke there may be some bug in code, or my own problem. I tried to figure out the following:
where to set the initial pose info of follower and leader in code
how to solve the opposite moving problem, have you guys met the same problem ?
Thx
Expected behavior
^^
The text was updated successfully, but these errors were encountered:
Secondly check that the index of the motor corresponds to what you have with DynamixelWizzard
Without Dynamixel Wizzard, you can try to order each one to move seperately by reading their position and writing a delta position:
goal_position_array, self.leader_arms[name].read("Present_Position")
# update each dim seperately
self.leader_arms[name].write("Goal_Position", goal_position_array)
You can also write one value each time and the name of the motor similarly to:
Thanks for help ! @Cadene , yes ,I have seen the main branch has merged the control of koch robot. For controlling aloha robot, I see the pr is still in draft, maybe working on branch user/rcadene/2024_07_11_control_aloha is better to debug? Since the configuration for aloha and koch is different.
For the rest suggestion, Yes, I will try to working on ! thx~
System Info
Information
Reproduction
Hi Guys, I am using the pr #316 written by Cadene to control the real aloha robot, when running cmd : python control_robot.py teleoperate --robot aloha, I found the follower move fast to HORIZONTAL_POSITION, all arms in HORIZONTAL_POSITION like a line. When I control the follower arm with the master arm, I find that the movement direction of the follower arm is exactly opposite to that of the master arm.
I thinke there may be some bug in code, or my own problem. I tried to figure out the following:
Thx
Expected behavior
^^
The text was updated successfully, but these errors were encountered: