From 2130e3e5d44965e9ec6685b4dbdc540383363713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janar=20S=C3=B6=C3=B6t?= Date: Tue, 23 Mar 2021 16:55:25 +0200 Subject: [PATCH] menu: changes in tune menu according to #4023 (#4086) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - set 1% as input minimum for speed and flow - set speed maximum from 200% to 500% Signed-off-by: Janar Sööt --- klippy/extras/display/menu.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/klippy/extras/display/menu.cfg b/klippy/extras/display/menu.cfg index 05d1df9b..fa9b57d6 100644 --- a/klippy/extras/display/menu.cfg +++ b/klippy/extras/display/menu.cfg @@ -101,8 +101,8 @@ name: Tune type: input name: Speed: {'%3d' % (menu.input*100)}% input: {printer.gcode_move.speed_factor} -input_min: 0 -input_max: 2 +input_min: 0.01 +input_max: 5 input_step: 0.01 realtime: True gcode: @@ -112,7 +112,7 @@ gcode: type: input name: Flow: {'%3d' % (menu.input*100)}% input: {printer.gcode_move.extrude_factor} -input_min: 0 +input_min: 0.01 input_max: 2 input_step: 0.01 realtime: True