mirror of
https://github.com/nqrduck/ATM.git
synced 2024-11-23 10:32:27 +00:00
12 lines
255 B
C
12 lines
255 B
C
// Stepper Settings
|
|
#define STEPS_PER_ROTATION 3200U // 200 * 16 -> Microstepping
|
|
|
|
// Stall Detection sensitivity
|
|
#define STALL_VALUE 16 // [-64..63]
|
|
|
|
struct Stepper{
|
|
AccelStepper STEPPER;
|
|
TMC2130Stepper DRIVER;
|
|
int STALL_PIN;
|
|
String TYPE;
|
|
};
|