diff options
author | Aleksandr 'Aux' Ivanov <aux@hexmode.org> | 2023-07-10 03:21:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 22:21:27 -0400 |
commit | ffb5105b559da8da74bb8d8996da91f3171447e7 (patch) | |
tree | 2cca809601678aed58e5a5868bcebd33a6bf5de4 /config | |
parent | 6d48adf9ef5d17632acf53a7e3a07964f6cfd642 (diff) | |
download | kutter-ffb5105b559da8da74bb8d8996da91f3171447e7.tar.gz kutter-ffb5105b559da8da74bb8d8996da91f3171447e7.tar.xz kutter-ffb5105b559da8da74bb8d8996da91f3171447e7.zip |
config: Updated bed mesh configuration for Creality Ender 3 S1 and S1 Pro (#6219)
Existing `mesh_min` values start probing too far away from the edge.
Additionally `mesh_max` Y value of 197 is out of bed movement range (197 + `bltouch.y_offset` = 237.5) and causes Y stepper to overhit, which can potentially damage the printer in the long run.
Signed-off-by: Aleksandr Ivanov <aux@hexmode.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/printer-creality-ender3-s1-2021.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/printer-creality-ender3-s1-2021.cfg b/config/printer-creality-ender3-s1-2021.cfg index 59a1d529..6929b4ca 100644 --- a/config/printer-creality-ender3-s1-2021.cfg +++ b/config/printer-creality-ender3-s1-2021.cfg @@ -110,8 +110,8 @@ stow_on_each_sample: false [bed_mesh] speed: 120 -mesh_min: 20, 20 -mesh_max: 200, 197 +mesh_min: 10, 10 +mesh_max: 200, 194 probe_count: 4,4 algorithm: bicubic |