Both Z axis steppers are moving the oposite direction

2»

Comments

  • RAyWB said:
    before you wrote z is moving down... now you write z-is moving up....???????

    so you have to rotate both z motor connectors again ,

    lets do it step by step

    if you want to home x to the left side you have to move endstop to the left and set endstop xmin.


    YEAH!
    Just fixed it :D :D :D

    For the endstops:

    #define ENDSTOP_PULLUP_X_MIN false
    #define ENDSTOP_X_MIN_INVERTING false
    #define MIN_HARDWARE_ENDSTOP_X false

    #define ENDSTOP_PULLUP_Y_MIN true
    #define ENDSTOP_Y_MIN_INVERTING true
    #define MIN_HARDWARE_ENDSTOP_Y true

    #define ENDSTOP_PULLUP_Z_MIN true
    #define ENDSTOP_Z_MIN_INVERTING true
    #define MIN_HARDWARE_ENDSTOP_Z true

    #define ENDSTOP_PULLUP_X_MAX true
    #define ENDSTOP_X_MAX_INVERTING true
    #define MAX_HARDWARE_ENDSTOP_X true

    #define ENDSTOP_PULLUP_Y_MAX false
    #define ENDSTOP_Y_MAX_INVERTING false
    #define MAX_HARDWARE_ENDSTOP_Y false

    #define ENDSTOP_PULLUP_Z_MAX false
    #define ENDSTOP_Z_MAX_INVERTING false
    #define MAX_HARDWARE_ENDSTOP_Z false

    #define max_software_endstop_r true

    #define min_software_endstop_x true
    #define min_software_endstop_y false
    #define min_software_endstop_z false
    #define max_software_endstop_x false
    #define max_software_endstop_y true
    #define max_software_endstop_z true

    That works!

    #define X_ENABLE_ON 1
    #define Y_ENABLE_ON 1
    #define Z_ENABLE_ON 1
    #define DISABLE_X 0
    #define DISABLE_Y 0
    #define DISABLE_Z 0
    #define DISABLE_E 0
    #define INVERT_X_DIR 0
    #define INVERT_Y_DIR 0
    #define INVERT_Z_DIR 0
    #define X_HOME_DIR -1
    #define Y_HOME_DIR -1
    #define Z_HOME_DIR -1
    #define X_MAX_LENGTH 200
    #define Y_MAX_LENGTH 200
    #define Z_MAX_LENGTH 180
    #define X_MIN_POS 0
    #define Y_MIN_POS 0
    #define Z_MIN_POS 0
    #define DISTORTION_CORRECTION 0
    #define DISTORTION_CORRECTION_POINTS 5
    #define DISTORTION_CORRECTION_R 100
    #define DISTORTION_PERMANENT 1
    #define DISTORTION_UPDATE_FREQUENCY 15
    #define DISTORTION_START_DEGRADE 0.5
    #define DISTORTION_END_HEIGHT 1
    #define DISTORTION_EXTRAPOLATE_CORNERS 0

    This for the movements also!!!!!!!

    When home all: moves to X-0 and stops, moves to Y-0 and stops, then moves to Z-0 and stops.

    Now I have to get the thermistors and heaters to work


  • edited May 2018
    usually impossible ...
    xmin homing with x max endstop...
    think that will cause trouble later on
  • On the duplicator it was always X max if i recall correctly. To be sure I always can ad an additional endstop for min just to be sure?

    Next on my list is getting the heaters to work. It now gives decoupled error.
Sign In or Register to comment.