diff options
Diffstat (limited to 'klippy/extras/display/menu.cfg')
-rw-r--r-- | klippy/extras/display/menu.cfg | 72 |
1 files changed, 49 insertions, 23 deletions
diff --git a/klippy/extras/display/menu.cfg b/klippy/extras/display/menu.cfg index 1e9c12dc..3429e49e 100644 --- a/klippy/extras/display/menu.cfg +++ b/klippy/extras/display/menu.cfg @@ -222,30 +222,36 @@ items: [menu __control __move_10mm __axis_x] type: input name: "X:{0:05.1f} " -parameter: toolhead.xpos +parameter: gcode.move_xpos input_min: 0 input_max: 200.0 input_step: 10.0 -gcode: G1 X{0:.1f} +gcode: + G90 + G1 X{0:.1f} [menu __control __move_10mm __axis_y] type: input name: "Y:{0:05.1f} " -parameter: toolhead.ypos +parameter: gcode.move_ypos input_min: 0 input_max: 200.0 input_step: 10.0 -gcode: G1 Y{0:.1f} +gcode: + G90 + G1 Y{0:.1f} [menu __control __move_10mm __axis_z] type: input enable: !toolhead.is_printing name: "Move Z:{0:05.1f}" -parameter: toolhead.zpos +parameter: gcode.move_zpos input_min: 0 input_max: 200.0 input_step: 10.0 -gcode: G1 Z{0:.1f} +gcode: + G90 + G1 Z{0:.1f} [menu __control __move_10mm __axis_e] type: input @@ -255,7 +261,9 @@ parameter: 0 input_min: -50.0 input_max: 50.0 input_step: 10.0 -gcode: G1 E{0:.1f} F240 +gcode: + M83 + G1 E{0:.1f} F240 ### menu move 1mm ### [menu __control __move_1mm] @@ -270,30 +278,36 @@ items: [menu __control __move_1mm __axis_x] type: input name: "X:{0:05.1f} " -parameter: toolhead.xpos +parameter: gcode.move_xpos input_min: 0 input_max: 200.0 input_step: 1.0 -gcode: G1 X{0:.1f} +gcode: + G90 + G1 X{0:.1f} [menu __control __move_1mm __axis_y] type: input name: "Y:{0:05.1f} " -parameter: toolhead.ypos +parameter: gcode.move_ypos input_min: 0 input_max: 200.0 input_step: 1.0 -gcode: G1 Y{0:.1f} +gcode: + G90 + G1 Y{0:.1f} [menu __control __move_1mm __axis_z] type: input enable: !toolhead.is_printing name: "Move Z:{0:05.1f}" -parameter: toolhead.zpos +parameter: gcode.move_zpos input_min: 0 input_max: 200.0 input_step: 1.0 -gcode: G1 Z{0:.1f} +gcode: + G90 + G1 Z{0:.1f} [menu __control __move_1mm __axis_e] type: input @@ -303,7 +317,9 @@ parameter: 0 input_min: -50.0 input_max: 50.0 input_step: 1.0 -gcode: G1 E{0:.1f} F240 +gcode: + M83 + G1 E{0:.1f} F240 ### menu move 0.1mm ### [menu __control __move_01mm] @@ -318,30 +334,36 @@ items: [menu __control __move_01mm __axis_x] type: input name: "X:{0:05.1f} " -parameter: toolhead.xpos +parameter: gcode.move_xpos input_min: 0 input_max: 200.0 input_step: 0.1 -gcode: G1 X{0:.1f} +gcode: + G90 + G1 X{0:.1f} [menu __control __move_01mm __axis_y] type: input name: "Y:{0:05.1f} " -parameter: toolhead.ypos +parameter: gcode.move_ypos input_min: 0 input_max: 200.0 input_step: 0.1 -gcode: G1 Y{0:.1f} +gcode: + G90 + G1 Y{0:.1f} [menu __control __move_01mm __axis_z] type: input enable: !toolhead.is_printing name: "Move Z:{0:05.1f}" -parameter: toolhead.zpos +parameter: gcode.move_zpos input_min: 0 input_max: 200.0 input_step: 0.1 -gcode: G1 Z{0:.1f} +gcode: + G90 + G1 Z{0:.1f} [menu __control __move_01mm __axis_e] type: input @@ -351,7 +373,9 @@ parameter: 0 input_min: -50.0 input_max: 50.0 input_step: 0.1 -gcode: G1 E{0:.1f} F240 +gcode: + M83 + G1 E{0:.1f} F240 ### menu temperature ### [menu __temp] @@ -542,9 +566,11 @@ gcode: [menu __filament __feed] type: input name: Feed Filament: {0:.1f} -parameter: toolhead.epos +parameter: 0 input_step: 0.1 -gcode: G1 E{0:.1f} F30 +gcode: + M83 + G1 E{0:.1f} F30 ### menu prepare ### [menu __prepare] |