Hello!
We just connected our new arm after following this link. There are two issues worth mentioning.
-
We ordered a left arm, but the dashboard is showing ‘Right Arm’.
-
The dashboard is also giving us
module "dxl_10" missing
underRight Arm
.
We also tried running some code on the connected raspberry pi using your libraries:
from reachy import Reachy, parts
reachy = Reachy(
left_arm=parts.LeftArm(
io='/dev/ttyUSB0',
hand='force_gripper',
),
),
And this raises a reachy.error.LuosGateNotFoundError: Gate "r_left_arm" not found on ports "/dev/ttyUSB0"
error.
We then changed parts.LeftArm
to parts.RightArm
, the error we now get is:
File “/home/pi/dev/reachy/software/reachy/io/luos.py”, line 126, in find_module
missing_module=module_name,
reachy.error.LuosModuleNotFoundError: Could not find module “dxl_10” on bus “/dev/ttyUSB0”
Any ideas? We’re wondering how the system decides on whether the connected arm is left or right?
Thanks in advance