Extra stepper motor don't move
Hello,
I use the version 0.92.9 and a Mega / ramps 1.4 card
I added a step motor and when I run the gcode G201 P0 X10 engine does not move and gets stuck.
In config.h
#define MOTOR_DRIVER_1 (var) StepperDriver <42,44,40,0,0> var (2560.100)
I tested with var (200,100) also.
Do you have an idea.
Thank you
Eric
I use the version 0.92.9 and a Mega / ramps 1.4 card
I added a step motor and when I run the gcode G201 P0 X10 engine does not move and gets stuck.
In config.h
#define MOTOR_DRIVER_1 (var) StepperDriver <42,44,40,0,0> var (2560.100)
I tested with var (200,100) also.
Do you have an idea.
Thank you
Eric
Comments
I get Unknown command: G201
So I tested with #define NUM_MOTOR_DRIVERS 1
and invertEnable true and false, the engine still does not move; + (
"#define NUM_MOTOR_DRIVERS 1
// #define MOTOR_DRIVER_x StepperDriver <int Steppin, dirPin int, int enablePin, invertDir bool, bool invertEnable> (float stepsPerMM, float speed)
#define MOTOR_DRIVER_1 (var) StepperDriver <59,64,63, false, false> var (100.0f, 5.0f) "
I use G201 P0 X10 to test with Repetier-Host V1.6.2
Thank you
Eric
I'll test by adding a third extruder.
Good Sunday
Eric
this is it works!
by creating a third extruder.
I added in pin.h
"#define ORIG_E2_STEP_PIN 63
#define ORIG_E2_DIR_PIN 64
#define ORIG_E2_ENABLE_PIN 59
....
#define E2_PINS ORIG_E2_STEP_PIN, ORIG_E2_DIR_PIN, ORIG_E2_ENABLE_PIN, "
and changed the configuration EEPROM.
Eric
#define MOTOR_DRIVER_1 (var) StepperDriver <63,64,59, false, false> var (100.0f, 5.0f) "
#define MOTOR DRIVER v1 (var) Stepper Driver <63,64,59, false, false> var (200.0f, 1.0f)
because 200.0f for one revolution and 5.0 is too fast.
Thank you
Eric