MikeCL

Marlin

Jul 24th, 2021
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
  2. #define INVERT_X_DIR false // DELTA does not invert
  3. #define INVERT_Y_DIR false
  4. #define INVERT_Z_DIR false
  5.  
  6. // @section extruder
  7.  
  8. // For direct drive extruder v9 set to true, for geared extruder set to false.///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////EXTRUDER SECTION
  9. #define INVERT_E0_DIR true
  10. #define INVERT_E1_DIR false
  11. #define INVERT_E2_DIR false
  12. #define INVERT_E3_DIR false
  13.  
  14. // @section homing
  15.  
  16. //#define Z_HOMING_HEIGHT 15 // (in mm) Minimal z height before homing (G28) for Z clearance above the bed, clamps, ...
  17. // Be sure you have this distance over your Z_MAX_POS in case.
  18.  
  19. // ENDSTOP SETTINGS:
  20. // Sets direction of endstops when homing; 1=MAX, -1=MIN
  21. // :[-1,1]
  22. #define X_HOME_DIR 1 // deltas always home to max
  23. #define Y_HOME_DIR 1
  24. #define Z_HOME_DIR 1
Advertisement
Add Comment
Please, Sign In to add comment