mirror of https://github.com/Desuuuu/klipper.git
menu: Fix filament loading and unloading feature (#1082)
As discussed in #1057, the default loading- and unloading procedure does not behave as expected. Setting the extruder to relative mode fixes this. Signed-off-by: Nils Friedchen <Nils.Friedchen@googlemail.com>
This commit is contained in:
parent
bd410c22f7
commit
6ccc0732c1
|
@ -515,15 +515,29 @@ items:
|
|||
type: command
|
||||
name: Load Filament
|
||||
gcode:
|
||||
G1 E200 F1000
|
||||
G1 E100 F300
|
||||
M83
|
||||
G1 E50 F1000
|
||||
G1 E50 F1000
|
||||
G1 E50 F1000
|
||||
G1 E50 F1000
|
||||
G1 E50 F300
|
||||
G1 E50 F300
|
||||
M82
|
||||
|
||||
[menu __filament __unload]
|
||||
type: command
|
||||
name: Unload Filament
|
||||
gcode:
|
||||
G1 E-200 F1000
|
||||
G1 E-200 F1800
|
||||
M83
|
||||
G1 E-50 F1000
|
||||
G1 E-50 F1000
|
||||
G1 E-50 F1000
|
||||
G1 E-50 F1000
|
||||
G1 E-50 F1800
|
||||
G1 E-50 F1800
|
||||
G1 E-50 F1800
|
||||
G1 E-50 F1800
|
||||
M82
|
||||
|
||||
[menu __filament __feed]
|
||||
type: input
|
||||
|
|
Loading…
Reference in New Issue