Z motor not moving during auto home

  • My Monoprice maker select recently fried its melzi board. So I went out and purchased a ramps 1.4 kit. I've wired it all up and Flash the firmware with marlin(most recent build). When it boots up it boots up fine I go to prepare. And then I go to move axis I can move the X Y and Z axis and the access is moving in the correct direction. I go to auto home and the X and Y axis home properly but the z-axis does not move at all. Even though I can move it manually. Does anyone have any suggestions. I checked the end stop for the z-axis even though I know it probably has nothing to do with it and it has continuity when the end stop switch is depressed.


    Here's a little strange update, when moving the extruder motor it doesn't move. I just connected the extruder motor and Connect into the Y access. The extruder motor then moved, I I am going to check continuity of those wires going up to the extruder. But if that doesn't work I want to say it's a firmware issue and I might have to do a deep dive into my configuration.h. to figure everything out. Makes sense that it's firmware driven as I selected 33 and I don't have any controls for the heated bed

    I also tried 43

    Well the motor extruder won't move until the heating element reach the melting temperature. About Z axis maybe there are a problem with endstops settings and Z travel for homing.

    Alright figured out a little bit about it, after loading a new configuration I now have bed Heating but the bed wasn't heating past 50 degrees Celsius. So I add the mosfet and now it Heats perfectly. But now I have a new issue the extruder motor regardless of the hot end being heated is not working. The physical part is working as I moved the stepper motor to the y-axis and it worked. ideas?

    Have you tried sending the printer "M119" to check endstop status and make sure it doesn't think the Z endstop is triggered?

  • user2698080

    user2698080 Correct answer

    5 years ago

    Alright, I have figured everything out with the help of #reprap IRC community.



    Issue #1 - Z axis not moving during zero. Just as tjb1 suggested the issue was that it thought it was hitting the endstop, I needed to invert the logic of the endstop within the configuration.h



    const bool Z_MAX_ENDSTOP_INVERTING = true;


    Issue #2 - No Heated bed controls. The issue resided with the configuration of the heated bed within the configuration.h. The bed was not defined correctly(I do not have the solution for this one as I found a pre-configured configuration.h for the Monoprice maker Select and after loading the firmware it worked



    Issue #3 - The extruder motor would not move. This was the biggest issue and came down to it being a cheap RAMPS/Arduino. E0's pinouts were not working properly so I took off the driver and wiring from E0 and put it on E1 then altered the pins_RAMPS.h and swapped the values for E1 and E0 pinouts. after reloading the firmware the extruder then moved fine.



    #define E0_STEP_PIN        36
    #define E0_DIR_PIN 34
    #define E0_ENABLE_PIN 30

    #define E1_STEP_PIN 26
    #define E1_DIR_PIN 28
    #define E1_ENABLE_PIN 24

License under CC-BY-SA with attribution


Content dated before 7/24/2021 11:53 AM