using port E1 as y stepper Ramps 1.4 May 26, 2018 11:19AM |
Registered: 6 years ago Posts: 22 |
Re: using port E1 as y stepper Ramps 1.4 May 26, 2018 11:44AM |
Admin Registered: 13 years ago Posts: 7,123 |
#define E1_STEP_PIN 36 #define E1_DIR_PIN 34 #define E1_ENABLE_PIN 30 #define E1_CS_PIN 44 #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_CS_PIN 49
Re: using port E1 as y stepper Ramps 1.4 May 26, 2018 12:01PM |
Registered: 6 years ago Posts: 22 |
Re: using port E1 as y stepper Ramps 1.4 May 26, 2018 12:04PM |
Registered: 6 years ago Posts: 22 |
Thank you dust for the reply and now how I can change the speed y speed or E1 speedwayQuote
Dust
yes, dead easy
Just edit the pins_RAMPS.h file
Find these two block of code and swap all the numbers over, like for llike. eg Y_STEP_PIN becomes 36
#define E1_STEP_PIN 36 #define E1_DIR_PIN 34 #define E1_ENABLE_PIN 30 #define E1_CS_PIN 44 #define Y_STEP_PIN 60 #define Y_DIR_PIN 61 #define Y_ENABLE_PIN 56 #define Y_CS_PIN 49
Re: using port E1 as y stepper Ramps 1.4 May 27, 2018 12:19AM |
Admin Registered: 13 years ago Posts: 7,123 |