-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtmc2208.py
41 lines (33 loc) · 1.41 KB
/
tmc2208.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import machine
import time
class TMC2208:
# Initialize the TMC2208 driver with the given UART parameters and pin assignments
def __init__(self, uart_num, baudrate, rx_pin, tx_pin, en_pin, dir_pin, step_pin):
self.uart = machine.UART(uart_num, baudrate=baudrate, rx=rx_pin, tx=tx_pin)
self.en_pin = machine.Pin(en_pin, machine.Pin.OUT)
self.dir_pin = machine.Pin(dir_pin, machine.Pin.OUT)
self.step_pin = machine.Pin(step_pin, machine.Pin.OUT)
# Set the driver enable pin high to enable the driver
self.en_pin.value(1)
# Send a command to the TMC2208 driver over UART
def send_command(self, cmd):
self.uart.write(cmd + b'\n')
response = self.uart.readline()
return response
# Set the microstep mode of the driver
def set_microstep_mode(self, mode):
cmd = 'V{}'.format(mode).encode()
self.send_command(cmd)
# Set the direction of the motor
def set_direction(self, direction):
self.dir_pin.value(direction)
# Step the motor the given number of steps at the given speed
def step(self, steps, delay_us):
for i in range(steps):
self.step_pin.value(1)
time.sleep_us(delay_us)
self.step_pin.value(0)
time.sleep_us(delay_us)
# Disable the driver
def disable_driver(self):
self.en_pin.value(0)