This is an unofficial Python driver for controlling Feetech serial bus servos over RS485 using a USB-to-TTL adapter. It was put together for our own use since other libraries and code examples were too complicated, involving multiple files and folders, and were just very hard to implement compared to a single-file class with logical method names.
Feel free to use, suggest missing features, or commit improvements!
- Control multiple servos over RS485.
- Read and write servo parameters such as position, speed, load, voltage, and temperature.
- Enable/disable torque control.
- Ping servos to check connectivity.
- Fetch model number and other servo information.
- Tested Hardware:
- USB-to-TTL Adapter: Feetech FE-URT-1.
- USB-to-TTL Adapter: Waveshare Bus Servo Adapter (A).
- Servo Motor: Feetech SM45BL (24V, 45kgcm, RS485 serial bus).
- Servo Motor: Waveshare ST3215 (12V, 30kgcm, TTL serial bus).
- Likely Compatible: Other Feetech RS485 serial bus servos.
-
Clone this repository:
git clone https://github.com/blanck/feetech.git cd feetech
-
Install the required dependencies:
pip install -r requirements.txt
If you don’t want to clone the repository, you can simply install the required dependency manually:
pip install pyserial
- Connect the Feetech FE-URT-1 or Waveshare USB-to-TTL adapter to your computer.
- Connect the RS485/TTL servo(s) to the adapter.
- Ensure the servo ID(s) are properly configured.
from feetech import FeetechServo
# Initialize the servo driver
servo = FeetechServo(port='/dev/ttyUSB0', baud_rate=115200, debug=True)
try:
# Ping the servo
ping_response = servo.ping(servo_id=1)
print(f"Ping response: {'Alive' if ping_response == 1 else 'No response'}")
# Read the model number
model_number = servo.read_model_number(servo_id=1)
print(f"Model number: {model_number}")
# Enable torque
servo.enable_torque(servo_id=1, enable=True)
# Move to position 1500
servo.write_position(servo_id=1, position=1500)
# Read current position
position = servo.read_position(servo_id=1)
print(f"Current position: {position}")
# Read load, voltage, and temperature
load = servo.read_load(servo_id=1)
voltage = servo.read_voltage(servo_id=1)
temperature = servo.read_temperature(servo_id=1)
print(f"Load: {load}, Voltage: {voltage * 0.1} V, Temperature: {temperature} °C")
finally:
# Close the connection
servo.close()
servo = FeetechServo(port='/dev/ttyUSB0', baud_rate=115200, debug=False)
port
: Serial port (e.g.,/dev/ttyUSB0
on Linux orCOM3
on Windows).baud_rate
: Baud rate (default is115200
).debug
: Enable debug output (default isFalse
).
ping_response = servo.ping(servo_id=1)
- Returns
1
if the servo is alive,-1
if no response.
model_number = servo.read_model_number(servo_id=1)
- Returns the model number of the servo.
servo.enable_torque(servo_id=1, enable=True)
enable
:True
to enable torque,False
to disable.
servo.write_position(servo_id=1, position=1500)
position
: Target position (0–4095 or as per servo limits).
servo.set_speed(servo_id=1, speed=1500)
speed
: Target speed (0–4095 or as per servo limits).
position = servo.read_position(servo_id=1)
- Returns the current position of the servo.
load = servo.read_load(servo_id=1)
- Returns the current load on the servo.
voltage = servo.read_voltage(servo_id=1)
- Returns the current voltage in 0.1V units. Multiply by
0.1
to get volts.
temperature = servo.read_temperature(servo_id=1)
- Returns the current temperature in °C.
servo.close()
- Closes the serial connection.
Enable debug mode during initialization to print packet and response details:
servo = FeetechServo(port='/dev/ttyUSB0', baud_rate=115200, debug=True)
- This driver is unofficial and has been tested with the Feetech SM45BL servo and FE-URT-1 USB-to-TTL adapter.
- It is likely compatible with other Feetech RS485 servos, but you may need to adjust control table addresses or packet formats.
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License.