diff options
author | Yannic Schröder <schroeder@ibr.cs.tu-bs.de> | 2020-08-10 03:12:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-09 21:12:09 -0400 |
commit | d4dab9da5d974f21f77d6eb5242bdc6dd4d59cd2 (patch) | |
tree | b533899987b8d6e318e877576e792c1f020d49cf /config | |
parent | 153883c6c58f3c4c8a1bbc785f5aacf04a2f0bcd (diff) | |
download | kutter-d4dab9da5d974f21f77d6eb5242bdc6dd4d59cd2.tar.gz kutter-d4dab9da5d974f21f77d6eb5242bdc6dd4d59cd2.tar.xz kutter-d4dab9da5d974f21f77d6eb5242bdc6dd4d59cd2.zip |
config: Add homing order not to Ender 3 config (#3069)
By homing the y axis before the x axis, the nozzle will not touch the
plastic cover of the bed heater cable.
Signed-off-by: Yannic Schroeder <schroeder@ibr.cs.tu-bs.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/printer-creality-ender3-2018.cfg | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/printer-creality-ender3-2018.cfg b/config/printer-creality-ender3-2018.cfg index da2a6043..215c98e1 100644 --- a/config/printer-creality-ender3-2018.cfg +++ b/config/printer-creality-ender3-2018.cfg @@ -91,3 +91,15 @@ sclk_pin: PA1 sid_pin: PC1 encoder_pins: ^PD2, ^PD3 click_pin: ^!PC0 + +# The print bed can move so far to the front, that the nozzle can reach the +# plastic cover of the print bed heater cable (only when the bed is moved by +# hand). By homing the Y axis before the X axis, it is ensured the nozzle will +# not melt through the plastic part. +# BEWARE: You will lose the ability to home axes individually. The printer will +# always home all axes for every G28 command. +#[homing_override] +#gcode: +# G28 Y0 +# G28 X0 +# G28 Z0 |