Skip to content

Commit

Permalink
Lowered homing feedrate on TAZ Pro as suggested by LulzBot
Browse files Browse the repository at this point in the history
  • Loading branch information
marciot committed Nov 13, 2023
1 parent f73dfa5 commit cf3bc0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2270,7 +2270,7 @@
#endif

// Homing speeds (linear=mm/min, rotational=°/min)
#define HOMING_FEEDRATE_MM_M {3000,3000,1800} // <-- changed
#define HOMING_FEEDRATE_MM_M {3000,3000,1500} // <-- changed

// Validate that endstops are triggered on homing moves
#define VALIDATE_HOMING_ENDSTOPS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
#define HEATER_1_MAXTEMP 305
#define HOLD_MULTIPLIER 0.5
#define HOME_AFTER_DEACTIVATE
#define HOMING_FEEDRATE_MM_M {3000,3000,1800}
#define HOMING_FEEDRATE_MM_M {3000,3000,1500}
#define HOST_ACTION_COMMANDS
#define HOTEND_OFFSET_X {0,44.58}
#define HOTEND_OFFSET_Y {0,0.1}
Expand Down
5 changes: 5 additions & 0 deletions config/examples/build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,11 @@ function make_config(PRINTER, TOOLHEAD) {
else if (MINI_BED && USE_Z_SCREW) {
MARLIN["HOMING_FEEDRATE_MM_M"] = [30*60,30*60,8*60] // mm/m
}
else if (PRINTER.includes("Quiver_TAZPro")) {
// According to Brian Kahl, LulzBot is now using newer motors
// which cannot handle 30mm/sec feedrate
MARLIN["HOMING_FEEDRATE_MM_M"] = [50*60,50*60,25*60] // mm/m
}
else if (TAZ_BED && USE_Z_BELT) {
MARLIN["HOMING_FEEDRATE_MM_M"] = [50*60,50*60,30*60] // mm/m
}
Expand Down

0 comments on commit cf3bc0c

Please sign in to comment.