Need more power! March 14, 2013 01:09AM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 14, 2013 01:47AM |
Registered: 14 years ago Posts: 1,092 |
Re: Need more power! March 14, 2013 03:38AM |
Registered: 11 years ago Posts: 51 |
Do you mean feed rates or micro stepping? I did, in fact, have to reduce the default feed rates in Slic3r from 60 mm/sec. to 14 in order to keep from missing steps and such. I'm pretty sure you mean quarter stepping or eighth stepping because that's the only way to reduce the steps-per-unit, right? But yeah. I'm not completely clear on just how 'plug and play" the Pololu's are yet either. I'll be reading the manualQuote
Cefiar
also try going to 1/8 or 1/4 feed rates if you're using lead screws
Re: Need more power! March 14, 2013 03:43PM |
Registered: 12 years ago Posts: 809 |
Re: Need more power! March 14, 2013 09:41PM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 16, 2013 12:59AM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 16, 2013 02:14AM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 16, 2013 11:54AM |
Registered: 12 years ago Posts: 548 |
Re: Need more power! March 16, 2013 01:29PM |
Registered: 12 years ago Posts: 809 |
Re: Need more power! March 16, 2013 02:23PM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 16, 2013 03:25PM |
Registered: 11 years ago Posts: 51 |
// ENDSTOP SETTINGS: // Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR -1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1 #define min_software_endstops true //If true, axis won't move to coordinates less than HOME_POS. #define max_software_endstops true //If true, axis won't move to coordinates greater than the defined lengths below. // Travel limits after homing #define X_MAX_POS 381 #define X_MIN_POS 0 #define Y_MAX_POS 584 #define Y_MIN_POS 0 #define Z_MAX_POS 150 #define Z_MIN_POS 0 #define X_MAX_LENGTH (X_MAX_POS - X_MIN_POS) #define Y_MAX_LENGTH (Y_MAX_POS - Y_MIN_POS) #define Z_MAX_LENGTH (Z_MAX_POS - Z_MIN_POS) // The position of the homing switches //#define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used //#define BED_CENTER_AT_0_0 // If defined, the center of the bed is at (X=0, Y=0) //Manual homing switch locations: #define MANUAL_X_HOME_POS 0 #define MANUAL_Y_HOME_POS 0 #define MANUAL_Z_HOME_POS 0
Re: Need more power! March 16, 2013 09:23PM |
Registered: 14 years ago Posts: 1,092 |
Re: Need more power! March 17, 2013 05:55PM |
Registered: 11 years ago Posts: 51 |
Re: Need more power! March 17, 2013 06:26PM |
Registered: 14 years ago Posts: 1,092 |
Re: Need more power! March 17, 2013 06:28PM |
Registered: 11 years ago Posts: 51 |