diff options
author | Stéphane Lepin <stephane.lepin@gmail.com> | 2024-05-11 02:18:38 +0200 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2024-05-12 20:08:30 -0400 |
commit | 79930ed99a1fc284f41af5755908aa1fab948ce1 (patch) | |
tree | 3e35a234fc052394d589b0f7a619e3dce73432ef /config | |
parent | 434770eaf9d382cccba203a3475ace2dc0653d7b (diff) | |
download | kutter-79930ed99a1fc284f41af5755908aa1fab948ce1.tar.gz kutter-79930ed99a1fc284f41af5755908aa1fab948ce1.tar.xz kutter-79930ed99a1fc284f41af5755908aa1fab948ce1.zip |
config: Add safe_z_home section for Creality CR-6 SE
The Creality CR-6 SE has a strain gauge on its hotend used for z-probing and homing. Currently, running G28 to home all axes puts the hotend just outside of the print bed and thus assumes a wrong homing point for the Z axis.
This change aims to address this issue by setting a safe Z-homing point (in the middle of the print bed) into the Creality CR-6 SE 2020 and 2021-revision config files.
Signed-off-by: Stéphane Lepin <stephane.lepin@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/printer-creality-cr6se-2020.cfg | 4 | ||||
-rw-r--r-- | config/printer-creality-cr6se-2021.cfg | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/config/printer-creality-cr6se-2020.cfg b/config/printer-creality-cr6se-2020.cfg index 11d827ea..2929a9ac 100644 --- a/config/printer-creality-cr6se-2020.cfg +++ b/config/printer-creality-cr6se-2020.cfg @@ -98,6 +98,10 @@ z_offset: 0.0 speed: 2.0 samples: 5 +[safe_z_home] +home_xy_position: 117, 117 +z_hop: 10 + [filament_switch_sensor filament_sensor] pause_on_runout: true switch_pin: ^!PA7 diff --git a/config/printer-creality-cr6se-2021.cfg b/config/printer-creality-cr6se-2021.cfg index 12c17120..932a9263 100644 --- a/config/printer-creality-cr6se-2021.cfg +++ b/config/printer-creality-cr6se-2021.cfg @@ -98,6 +98,10 @@ z_offset: 0.0 speed: 2.0 samples: 5 +[safe_z_home] +home_xy_position: 117, 117 +z_hop: 10 + [filament_switch_sensor filament_sensor] pause_on_runout: true switch_pin: ^!PA7 |