mirror of https://github.com/Desuuuu/klipper.git
add explicit speed for extrude moves
This commit is contained in:
parent
63077484bc
commit
7b7b44b92b
|
@ -388,9 +388,9 @@ script:
|
||||||
M83
|
M83
|
||||||
{% set length = get_variable("filament_length", 10) %}
|
{% set length = get_variable("filament_length", 10) %}
|
||||||
{% if data == t5uid1.constants.filament_retract %}
|
{% if data == t5uid1.constants.filament_retract %}
|
||||||
G1 E-{length}
|
G1 E-{length} F180
|
||||||
{% elif data == t5uid1.constants.filament_extrude %}
|
{% elif data == t5uid1.constants.filament_extrude %}
|
||||||
G1 E{length}
|
G1 E{length} F180
|
||||||
{% endif %}
|
{% endif %}
|
||||||
RESTORE_GCODE_STATE NAME=state_filament_move
|
RESTORE_GCODE_STATE NAME=state_filament_move
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue