Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/_tools
diff options
context:
space:
mode:
authorSineos <monk@gmx.net>2018-05-24 14:41:25 +0300
committerScott Lahteine <github@thinkyhead.com>2018-05-24 15:05:10 +0300
commit6921f9cadfe49fdf021389671aa0e48d0486563c (patch)
tree9db9f9ec7a17f641b7d37138e1bfb08c6a09f26e /_tools
parent17788db8012e69c60259156ecc2f03e9c4271acc (diff)
K-Pattern: Delta finish move (#165)
Make the last move away from the pattern more Delta friendly
Diffstat (limited to '_tools')
-rw-r--r--_tools/lin_advance/k-factor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/_tools/lin_advance/k-factor.js b/_tools/lin_advance/k-factor.js
index 84772b68..59a487e6 100644
--- a/_tools/lin_advance/k-factor.js
+++ b/_tools/lin_advance/k-factor.js
@@ -303,7 +303,7 @@ function genGcode() {
';\n' +
'M104 S0 ; turn off hotend\n' +
'M140 S0 ; turn off bed\n' +
- 'G1 Z30 X' + (NULL_CENTER ? BED_X / 2 : BED_X) + ' Y' + (NULL_CENTER ? BED_Y / 2 : BED_Y) + ' F' + SPEED_MOVE + ' ; move away from the print\n' +
+ 'G1 Z30 X' + (NULL_CENTER ? 0 : BED_X) + ' Y' + (NULL_CENTER ? 0 : BED_Y) + ' F' + SPEED_MOVE + ' ; move away from the print\n' +
'M84 ; disable motors\n' +
'M502 ; resets parameters from ROM\n' +
'M501 ; resets parameters from EEPROM\n' +