Elevate your robotics projects with dynamixel-api -- a powerful and user-friendly Python wrapper for the Dynamixel SDK libary, designed to effortlessly control various Dynamixel motors.
Explore Dynamixel SDK »
Table of Contents
dynamixel-api
is a Python wrapper for the Dynamixel SDK library, designed to control various Dynamixel motors. This library provides a high-level API that simplifies motor control through a DynamixelConnector
class, which establishes and manages serial connections, and a Motor
class that offers direct access to frequently used control parameters. Users can read and write motor control fields easily, enabling quick setup for common robotic manipulation tasks. The library's modular design can accommodate multiple types of Dynamixel motors, making it versatile for various robotics applications.
Make sure you have a working Python 3 installation. If not, follow the instructions on the Python 3 download page.
To use the dynamixel-api
library, you need to have a Dynamixel motor and the appropriate hardware to connect it to your computer. The motors are controlled via a U2D2 Power Hub Board, which connects to the motor with a 4-pin JST EH cable. The U2D2 Power Hub Board is connected to a computer via a USB cable, allowing the user to send commands to the motor using the Dynamixel SDK library.
To install the dynamixel-api
library, simply run the following command:
pip3 install dynamixel-api
or clone the repository and install the package locally:
git clone https://github.com/TimSchneider42/dynamixel-api.git
pip3 install ./dynamixel-api
The dynamixel-api
library provides out-of-the-box support for the following hardware:
- ROBOTIS RH-P12-RN and RH-P12-RN(A) Grippers: These are advanced robotic grippers powered by Dynamixel motors.
- DYNAMIXEL XL430-W250-T Motor: The motor used to control the actuated-UMI gripper.
First, create a Connector
instance of your motor and call the connect()
function to establish a serial connection to the motor. For example, to connect to an XL430-W250-T motor:
from dynamixel_api import XL430W250TConnector
connector = XL430W250TConnector(device="/dev/ttyUSB0", baud_rate=57600, dynamixel_id=1)
connector.connect()
...
connector.disconnect()
Connector
instances can also be used as context managers:
with XL430W250TConnector(device="/dev/ttyUSB0", baud_rate=57600, dynamixel_id=1) as connector:
...
The connector
object allows reading and writing of arbitrary addresses of the motor's control table:
print(connector.read_field("torque_enable"))
connector.write_field("torque_enable", 1)
print(connector.read_field("torque_enable"))
For a comprehensive list of its entries, refer to the docs of your motor.
Alternatively for this example, all entries are listed in dynamixel_api/models/xl430w250t.py
.
Note that the motors have to be disabled ("torque_enabled"
has to be set to 0) for EEPROM values to be written, while RAM values can be written at any time.
For convenience, the Motor
class provides direct access to the most commonly used fields:
import time
from dynamixel_api import Motor
motor = Motor(connector)
motor.torque_enabled = True
motor.goal_position = 1.0
time.sleep(3.0)
motor.torque_enabled = False
For a full example of the usage of this package, refer to example/xl430w250t_open_close.py
.
To use a custom motor, define its control table (EEPROM and RAM Fields) and implement a Connector
class based on the motor's documentation. Refer to the dynamixel_api/models
folder for examples and templates.
After defining the Connector
class, you can use the Motor class to control the motor as shown above. If you want to have additional control over the motor, you can create a child class of the Motor
class and add custom methods.
If the baud rate and/or Dynamixel ID is unknown, the find_grippers
(dynamixel_api/sweep.py) method can be used to find those parameters by performing a full sweep. It can be invoked as follows from the command line after installing the package:
dynamixel-sweep
You can pass following arguments to the command:
--device
: The device path to the serial port (default: /dev/ttyUSB0)--baud-rate
: The baud rate to use for the sweep (default: 9_600 57_600 115_200 1_000_000 2_000_000 3_000_000 4_000_000 4_500_000 10_500_000)
We welcome contributions to this repository. If you would like to contribute, please fork this repository and submit a pull request with your changes.
This project is licensed under the MIT License - see the LICENSE file for details.