Raspberry PI Stepper Driver for CL57T
This is a library to drive a stepper motor with a CL57T stepper driver and a Raspberry Pi.
This code is still experimental, so use it on your own risk.
This library is programmed in pure Python. The performance of Python is not good enough to drive the motor with high speed.
So if you move the motor with high speed and this library the motor will lose steps.
This library is a fork of cl57t-raspberry-pi-stepper-drive. Please check out this repo for more context.
the Documentation of the CL57T can be found here:
CL57T - Datsheet
The code is also available on PyPI.
Installation
Installation with PIP
pip3 install cl57t-raspberry-pi-stepper-drive
Wiring
Pin CL57T | connect to | Function |
---|
COM,ENA-, DIR-, PUL- | GND of Raspberry Pi | GND for VDD and Signals |
ALM | GPIO 26 (pin 37) | receive an error signal from stepper driver |
ENA | GPIO 19 (pin 35) | enable the motor output |
DIR | GPIO 13 (pin 33) | set the direction of the motor |
PUL/STEP | GPIO 6 (pin 31) | moves the motor one step per pulse |
HOMING_SENSOR | GPIO 5 (pin 29) | optional, used for homing the stepper |
The GPIO pins can be specific when initiating the class.
Sample Code
"""
test file for testing basic movement
"""
from cl57t_raspberry_pi_stepper_drive.CL57TStepperDriver import *
print("---")
print("SCRIPT START")
print("---")
stepper = CL57TStepperDriver(
pin_en=19,
pin_step=6,
pin_dir=13,
pin_homing_sensor=5,
microstepping_resolution=1600,
gearwheel_diameter_mm=56,
loglevel=Loglevel.DEBUG,
)
stepper.cl57t_logger.set_loglevel(Loglevel.DEBUG)
stepper.set_movement_abs_rel(MovementAbsRel.ABSOLUTE)
print("---\n---")
stepper.set_motor_enabled(True)
stepper.set_acceleration(800)
stepper.set_max_speed(800)
stepper.do_homing()
stepper.set_acceleration(1600 * 10)
stepper.set_max_speed(10000)
stepper.set_homing_position_mm(400)
stepper.run_to_position_mm(1000)
stepper.run_to_position_mm(400)
stepper.set_motor_enabled(False)
print("---\n---")
del stepper
print("---")
print("SCRIPT FINISHED")
print("---")
Acknowledgements
This library is a fork of TMC2209_Raspberry_Pi
.
The code to run the stepper motor is based on the code of the AccelStepper Library from Mike McCauley.
The main focus for this are Test setups, as Python is not fast enough for high motor speeds.
Feedback/Contributing
If you encounter any problem, feel free to open an issue on the Github issue page.
Feedback will keep this project growing and I encourage all suggestions.
Feel free to submit a pull request on the dev branch.