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
|
type: command
|
||||||
name: Load Filament
|
name: Load Filament
|
||||||
gcode:
|
gcode:
|
||||||
G1 E200 F1000
|
M83
|
||||||
G1 E100 F300
|
G1 E50 F1000
|
||||||
|
G1 E50 F1000
|
||||||
|
G1 E50 F1000
|
||||||
|
G1 E50 F1000
|
||||||
|
G1 E50 F300
|
||||||
|
G1 E50 F300
|
||||||
|
M82
|
||||||
|
|
||||||
[menu __filament __unload]
|
[menu __filament __unload]
|
||||||
type: command
|
type: command
|
||||||
name: Unload Filament
|
name: Unload Filament
|
||||||
gcode:
|
gcode:
|
||||||
G1 E-200 F1000
|
M83
|
||||||
G1 E-200 F1800
|
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]
|
[menu __filament __feed]
|
||||||
type: input
|
type: input
|
||||||
|
|
Loading…
Reference in New Issue