ATM/include/Stepper.h

13 lines
255 B
C
Raw Normal View History

2022-01-06 15:33:37 +00:00
// Stepper Settings
2022-01-17 13:22:35 +00:00
#define STEPS_PER_ROTATION 3200U // 200 * 16 -> Microstepping
2022-01-06 15:33:37 +00:00
// Stall Detection sensitivity
#define STALL_VALUE 16 // [-64..63]
struct Stepper{
AccelStepper STEPPER;
TMC2130Stepper DRIVER;
int STALL_PIN;
String TYPE;
2022-01-06 15:33:37 +00:00
};