A Python Driver for MIT Mini-Cheetah Actuator which uses SocketCAN for communication.
Project description
Python Motor Driver for Mini Cheetah Actuator: T-Motor AK80-6
Dependencies:
- bitstring
Install via:
pip3 install bitstring
Documentation
- Useful videos:
- Datasheet
- Ben Katz Documentation
Pre-requisites:
-
Setting up the CAN interface:
-
Run this command and make sure that
can0
(or any other can interface depending on the system)shows up as an interface after connecting the USB cable to your laptop:ip link show
-
Configure the
can0
interface to have a 1 Mbaud communication frequency:sudo ip link set can0 type can bitrate 1000000
-
To bring up the
can0
interface, run:sudo ip link set up can0
-
-
To change motor parameters such as CAN ID or to calibrate the encoder, a serial connection is used. The serial terminal GUI used on linux for this purpose is
cutecom
Usage:
Import: from motor_driver.canmotorlib import CanMotorController
Example Motor Initialization: motor = CanMotorController(can_socket='can0', motor_id=0x01, motor_type='AK80_6_V2', socket_timeout=0.5)
Available Functions:
enable_motor()
disable_motor()
set_zero_position()
send_deg_command(position_in_degrees, velocity_in_degrees, Kp, Kd, tau_ff):
send_rad_command(position_in_radians, velocity_in_radians, Kp, Kd, tau_ff):
change_motor_constants(P_MIN_NEW, P_MAX_NEW, V_MIN_NEW, V_MAX_NEW, KP_MIN_NEW, KP_MAX_NEW, KD_MIN_NEW, KD_MAX_NEW, T_MIN_NEW, T_MAX_NEW)
All motor communication functions return current position, velocity, torque in SI units except for send_deg_command
. change_motor_constants
does not return anything.
Supported Motor Configurations:
- AK80-6 (From Cubemars, Firmware versions v1 and v2):
motor_type='AK80_6_V1'
andmotor_type='AK80_6_V2'
- AK80-9 (From Cubemars, Firmware version v2):
motor_type='AK80_9_V2'
# Working parameters for AK80-6 V1.0 firmware
AK80_6_V1_PARAMS = {
"P_MIN" : -95.5,
"P_MAX" : 95.5,
"V_MIN" : -45.0,
"V_MAX" : 45.0,
"KP_MIN" : 0.0,
"KP_MAX" : 500,
"KD_MIN" : 0.0,
"KD_MAX" : 5.0,
"T_MIN" : -18.0,
"T_MAX" : 18.0,
"AXIS_DIRECTION" : -1
}
# Working parameters for AK80-6 V2.0 firmware
AK80_6_V2_PARAMS = {
"P_MIN" : -12.5,
"P_MAX" : 12.5,
"V_MIN" : -38.2,
"V_MAX" : 38.2,
"KP_MIN" : 0.0,
"KP_MAX" : 500.0,
"KD_MIN" : 0.0,
"KD_MAX" : 5.0,
"T_MIN" : -12.0,
"T_MAX" : 12.0,
"AXIS_DIRECTION" : 1
}
# Working parameters for AK80-9 V2.0 firmware
AK80_9_V2_PARAMS = {
"P_MIN" : -12.5,
"P_MAX" : 12.5,
"V_MIN" : -25.64,
"V_MAX" : 25.64,
"KP_MIN" : 0.0,
"KP_MAX" : 500.0,
"KD_MIN" : 0.0,
"KD_MAX" : 5.0,
"T_MIN" : -18.0,
"T_MAX" : 18.0,
"AXIS_DIRECTION" : 1
}
To add a new constants configuration use the change_motor_constants
function or create an issue with the constants and motor information on the GitHub page to be added to the driver.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mini-cheetah-motor-driver-socketcan-0.2.2.tar.gz
.
File metadata
- Download URL: mini-cheetah-motor-driver-socketcan-0.2.2.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 404ffc48980387f321a1e461409ef0d3b368ebc73c2a7c699efd3b786f11baf1 |
|
MD5 | e90c8531b9936a9765296d2fa5aabbd5 |
|
BLAKE2b-256 | b93820e5a6ff01ad8c68db01f8f5cfbd595c3c68642faedcb4e55246fd659abf |
File details
Details for the file mini_cheetah_motor_driver_socketcan-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: mini_cheetah_motor_driver_socketcan-0.2.2-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 791e636f322cab28b209898af513b98686f4db4c6f5624665ebba539fbdb6bb7 |
|
MD5 | c8813ba96ebbf9ccf1d1e5aa8e533a51 |
|
BLAKE2b-256 | b7aca904458c78cb78dad3c99ac911ebb9a71da895f002119a7ea93e4839641f |