Quantcast
Channel: Reprap Forum - Stepper Motors, Servo Motors, DC Motors
Viewing all articles
Browse latest Browse all 2228

Re: Stepper dont move but make sound

$
0
0
check home directions are all -1 (MIN) (was like this in configuration.h you showed, but you might have changed it)

/ Direction of endstops when homing; 1=MAX, -1=MIN
// :[-1,1]
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1

Use M119 to help Diagnose endstop issues (show endstop status)

manually test each endstop and check with M119
ie without any endstops hit send M119, it should report all endstops open
hold down X endstop, send another M119, now X min should say triggered. (make sure axis you test is changing!)
repeat for Y and Z

If you have two wire endstops, you need to #define ENDSTOPPULLUPS or they will never change.

NB if M119 reports that all max endstops are triggered you need to change
#define X_MAX_ENDSTOP_INVERTING false to true
#define Y_MAX_ENDSTOP_INVERTING false to true
#define Z_MAX_ENDSTOP_INVERTING false to true

Now you have your endstops working (hopefully)

re motor direction, change the following as needed to invert axis... if true change to false, if false change to true.
#define INVERT_X_DIR false
#define INVERT_Y_DIR true
#define INVERT_Z_DIR false

X- should move head left towards the min endstop
Y- should move bed back towards min endstop
Z- should move the head down towards the min endstop

Viewing all articles
Browse latest Browse all 2228

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>