diff options
author | Christian S <schnello@users.noreply.github.com> | 2020-02-18 02:52:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 20:52:54 -0500 |
commit | aa0a889b04433ab50c1e17be8289cfed4d2565a6 (patch) | |
tree | 3a95d77af2993e8f07679f70815ec1c7132cad31 /klippy | |
parent | 01d985a739f1ac5602d996231507aff5e16c1849 (diff) | |
download | kutter-aa0a889b04433ab50c1e17be8289cfed4d2565a6.tar.gz kutter-aa0a889b04433ab50c1e17be8289cfed4d2565a6.tar.xz kutter-aa0a889b04433ab50c1e17be8289cfed4d2565a6.zip |
menu: Set speed for move actions (#2520)
Signed-off-by: Christian Schnellrieder <schnellrieder.cs@gmail.com>
Diffstat (limited to 'klippy')
-rw-r--r-- | klippy/extras/display/menu.cfg | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/klippy/extras/display/menu.cfg b/klippy/extras/display/menu.cfg index add22e62..3d4e90c4 100644 --- a/klippy/extras/display/menu.cfg +++ b/klippy/extras/display/menu.cfg @@ -228,7 +228,7 @@ input_max: 200.0 input_step: 10.0 gcode: G90 - G1 X{0:.1f} + G1 X{0:.1f} F2400 [menu __control __move_10mm __axis_y] type: input @@ -239,7 +239,7 @@ input_max: 200.0 input_step: 10.0 gcode: G90 - G1 Y{0:.1f} + G1 Y{0:.1f} F2400 [menu __control __move_10mm __axis_z] type: input @@ -251,7 +251,7 @@ input_max: 200.0 input_step: 10.0 gcode: G90 - G1 Z{0:.1f} + G1 Z{0:.1f} F240 [menu __control __move_10mm __axis_e] type: input @@ -284,7 +284,7 @@ input_max: 200.0 input_step: 1.0 gcode: G90 - G1 X{0:.1f} + G1 X{0:.1f} F2400 [menu __control __move_1mm __axis_y] type: input @@ -295,7 +295,7 @@ input_max: 200.0 input_step: 1.0 gcode: G90 - G1 Y{0:.1f} + G1 Y{0:.1f} F2400 [menu __control __move_1mm __axis_z] type: input @@ -307,7 +307,7 @@ input_max: 200.0 input_step: 1.0 gcode: G90 - G1 Z{0:.1f} + G1 Z{0:.1f} F240 [menu __control __move_1mm __axis_e] type: input @@ -340,7 +340,7 @@ input_max: 200.0 input_step: 0.1 gcode: G90 - G1 X{0:.1f} + G1 X{0:.1f} F2400 [menu __control __move_01mm __axis_y] type: input @@ -351,7 +351,7 @@ input_max: 200.0 input_step: 0.1 gcode: G90 - G1 Y{0:.1f} + G1 Y{0:.1f} F2400 [menu __control __move_01mm __axis_z] type: input @@ -363,7 +363,7 @@ input_max: 200.0 input_step: 0.1 gcode: G90 - G1 Z{0:.1f} + G1 Z{0:.1f} F240 [menu __control __move_01mm __axis_e] type: input |