18 KiB
SO-100
In the steps below we explain how to assemble the SO-100 robot.
Source the parts
Follow this README. It contains the bill of materials, with a link to source the parts, as well as the instructions to 3D print the parts, and advice if it's your first time printing or if you don't own a 3D printer.
Install LeRobot 🤗
To install LeRobot follow our Installation Guide
In addition to these instructions, you need to install the Feetech sdk:
pip install -e ".[feetech]"
Step-by-Step Assembly Instructions
Remove the gears of the 6 leader motors
Video removing gears
Follow the video for removing gears. You need to remove the gear for the motors of the leader arm. As a result, you will only use the position encoding of the motor and reduce friction to more easily operate the leader arm.
Clean Parts
Remove all support material from the 3D-printed parts, the easiest way to do this is using a small screwdriver to get underneath the support material.
Additional Guidance
Video assembling arms
Note: This video provides visual guidance for assembling the arms, but it doesn't specify when or how to do the wiring. Inserting the cables beforehand is much easier than doing it afterward. The first arm may take a bit more than 1 hour to assemble, but once you get used to it, you can assemble the second arm in under 1 hour.
First Motor
Step 2: Insert Wires
Step 3: Install in Base
Step 4: Secure Motor
- Fasten the motor with 4 screws. Two from the bottom and two from top.
Step 5: Attach Motor Holder
Step 6: Attach Motor Horns
-
Install both motor horns, securing the top horn with a screw. Try not to move the motor position when attaching the motor horn, especially for the leader arms, where we removed the gears.
Video adding motor horn
Step 7: Attach Shoulder Part
-
Route one wire to the back of the robot and the other to the left or in photo towards you (see photo).
-
Attach the shoulder part.
Step 8: Secure Shoulder
- Tighten the shoulder part with 4 screws on top and 4 on the bottom (access bottom holes by turning the shoulder).
Second Motor Assembly
Step 9: Install Motor 2
Step 10: Attach Shoulder Holder
-
Add the shoulder motor holder.
-
Ensure the wire from motor 1 to motor 2 goes behind the holder while the other wire is routed upward (see photo).
-
This part can be tight to assemble, you can use a workbench like the image or a similar setup to push the part around the motor.
Step 11: Secure Motor 2
- Fasten the second motor with 4 screws.
Step 12: Attach Motor Horn
- Attach both motor horns to motor 2, again use the horn screw.
Step 13: Attach Base
Step 14: Attach Upper Arm
Third Motor Assembly
Step 15: Install Motor 3
- Route the motor cable from motor 2 through the cable holder to motor 3, then secure motor 3 with 4 screws.
Step 16: Attach Motor Horn
Step 17: Attach Forearm
Fourth Motor Assembly
Step 18: Install Motor 4
-
Slide in motor 4, attach the cable from motor 3, and secure the cable in its holder with a screw.
Step 19: Attach Motor Holder 4
-
Install the fourth motor holder (a tight fit). Ensure one wire is routed upward and the wire from motor 3 is routed downward (see photo).
Step 20: Secure Motor 4 & Attach Horn
Wrist Assembly
Step 21: Install Motor 5
Step 22: Attach Wrist
-
Connect the wire from motor 4 to motor 5. And already insert the other wire for the gripper.
-
Secure the wrist to motor 4 using 4 screws on both sides.
Step 23: Attach Wrist Horn
Follower Configuration
Step 24: Attach Gripper
Step 25: Install Gripper Motor
-
Insert the gripper motor, connect the motor wire from motor 5 to motor 6, and secure it with 3 screws on each side.
Step 26: Attach Gripper Horn & Claw
-
Attach the motor horns and again use a horn screw.
-
Install the gripper claw and secure it with 4 screws on both sides.
Step 27: Mount Controller
-
Attach the motor controller on the back.
Assembly complete – proceed to Leader arm assembly.
Leader Configuration
For the leader configuration, perform Steps 1–23. Make sure that you removed the motor gears from the motors.
Step 24: Attach Leader Holder
Step 25: Attach Handle
Step 26: Install Gripper Motor
-
Insert the gripper motor, secure it with 3 screws on each side, attach a motor horn using a horn screw, and connect the motor wire.
Step 27: Attach Trigger
Step 28: Mount Controller
-
Attach the motor controller on the back.
Configure the motors
1. Find the USB ports associated to each arm
To find the port for each bus servo adapter, run this script:
python lerobot/find_port.py
Example output:
Finding all available ports for the MotorBus.
['/dev/tty.usbmodem575E0032081', '/dev/tty.usbmodem575E0031751']
Remove the USB cable from your MotorsBus and press Enter when done.
[...Disconnect corresponding leader or follower arm and press Enter...]
The port of this MotorsBus is /dev/tty.usbmodem575E0032081
Reconnect the USB cable.
Where the found port is: /dev/tty.usbmodem575E0032081 corresponding to your leader or follower arm.
On Linux, you might need to give access to the USB ports by running:
sudo chmod 666 /dev/ttyACM0
sudo chmod 666 /dev/ttyACM1
Example output:
Finding all available ports for the MotorBus.
['/dev/ttyACM0', '/dev/ttyACM1']
Remove the usb cable from your MotorsBus and press Enter when done.
[...Disconnect corresponding leader or follower arm and press Enter...]
The port of this MotorsBus is /dev/ttyACM1
Reconnect the USB cable.
Where the found port is: /dev/ttyACM1 corresponding to your leader or follower arm.
2. Set the motors ids and baudrates
Each motor is identified by a unique id on the bus. When brand new, motors usually come with a default id of 1. For the communication to work properly between the motors and the controller, we first need to set a unique, different id to each motor. Additionally, the speed at which data is transmitted on the bus is determined by the baudrate. In order to talk to each other, the controller and all the motors need to be configured with the same baudrate.
To that end, we first need to connect to each motor individually with the controller in order to set these. Since we will write these parameters in the non-volatile section of the motors' internal memory (EEPROM), we'll only need to do this once.
If you are repurposing motors from another robot, you will probably also need to perform this step as the ids and baudrate likely won't match.
Follower
Connect the usb cable from your computer and the power supply to the follower arm's controller board. Then, run the following command or run the API example with the port you got from the previous step. You'll also need to give your leader arm a name with the id parameter.
TODO(pepijn): refer to video instructions SO101 here
```bash python -m lerobot.setup_motors \ --robot.type=so100_follower \ --robot.port=/dev/tty.usbmodem585A0076841 # <- paste here the port found at previous step ``` ```python from lerobot.common.robots.so100_follower import SO100Follower, SO100FollowerConfigconfig = SO100FollowerConfig( port="/dev/tty.usbmodem585A0076841", id="my_awesome_follower_arm", ) follower = SO100Follower(config) follower.setup_motors()
</hfoption>
</hfoptions>
You should see the following instruction
Connect the controller board to the 'gripper' motor only and press enter.
As instructed, plug the gripper's motor. Make sure it's the only motor connected to the board, and that the motor itself is not yet daisy chained to any other motor. As you press `[Enter]`, the script will automatically set the id and baudrate for that motor.
<details>
<summary>Troubleshooting</summary>
If you get an error at that point, check your cables and make sure they are plugged-in properly:
<ul>
<li>Power supply</li>
<li>USB cable between your computer and the controller board</li>
<li>The 3-pin cable from the controller board to the motor</li>
</ul>
If you are using a Waveshare controller board, make sure that the two jumpers are set on the `B` channel (USB).
</details>
You should then see the following message:
'gripper' motor id set to 6
Followed by the next instruction:
Connect the controller board to the 'wrist_roll' motor only and press enter.
You can disconnect the 3-pin cable from the controller board but you can leave it connected to the gripper motor on the other end as it will already be in the right place. Now, plug-in another 3-pin cable to the wrist roll motor and connect it to the controller board. As with the previous motor, make sure it is the only motor connected to the board and that the motor itself isn't connected to any other one.
Repeat the operation for each motor as instructed.
> [!TIP]
> Check your cabling at each step before pressing Enter. For instance, as the power supply cable might disconnect as you manipulate the board.
When you are done, the script will simply finish, at which point the motors are ready to be used. You can now plug the 3-pin cable from each motor to the next one, and the cable from the first motor (the 'shoulder pan' with id=1) to the controller board, which can now be attached to the base of the arm.
#### Leader
Do the same steps for the leader arm.
<hfoptions id="setup_motors">
<hfoption id="Command">
```bash
python -m lerobot.setup_motors \
--teleop.type=so100_leader \
--teleop.port=/dev/tty.usbmodem575E0031751 # <- paste here the port found at previous step
config = SO100LeaderConfig( port="/dev/tty.usbmodem585A0076841", id="my_awesome_leader_arm", ) leader = SO100Leader(config) leader.setup_motors()
</hfoption>
</hfoptions>
## Calibrate
Next, you'll need to calibrate your robot to ensure that the leader and follower arms have the same position values when they are in the same physical position.
The calibration process is very important because it allows a neural network trained on one robot to work on another.
#### Follower
Run the following command of API example to calbrate the follower arm:
<hfoptions id="calibrate_follower">
<hfoption id="Command">
```bash
python -m lerobot.calibrate \
--robot.type=so100_follower \
--robot.port=/dev/tty.usbmodem58760431551 \ # <- The port of your robot
--robot.id=my_awesome_follower_arm # <- Give the robot a unique name
config = SO100FollowerConfig( port="/dev/tty.usbmodem585A0076891", id="my_awesome_follower_arm", )
follower = SO100Follower(config) follower.connect(calibrate=False) follower.calibrate() follower.disconnect()
</hfoption>
</hfoptions>
TODO(pepijn): write docs for doing calibration
- First step is moving to middle position (add image)
- Second step is moving all joints to full range (add video with laptop screen side by side)
#### Leader
Run the following command of API example to calbrate the leader arm:
<hfoptions id="calibrate_leader">
<hfoption id="Command">
```bash
python -m lerobot.calibrate \
--teleop.type=so100_leader \
--teleop.port=/dev/tty.usbmodem58760431551 \ # <- The port of your robot
--teleop.id=my_awesome_leader_arm # <- Give the robot a unique name
config = SO100LeaderConfig( port="/dev/tty.usbmodem58760431551", id="my_awesome_leader_arm", )
leader = SO100Leader(config) leader.connect(calibrate=False) leader.calibrate() leader.disconnect()
</hfoption>
</hfoptions>
Congrats 🎉, your robot is all set to learn a task on its own. Start training it by following this tutorial: [Getting started with real-world robots](./getting_started_real_world_robot)
> [!TIP]
> If you have any questions or need help, please reach out on [Discord](https://discord.com/invite/s3KuuzsPFb).





















