mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-11-03 20:05:49 +01:00
gcode: Increase initial speed
If a speed is never specified then default to 25mm/s (up from 1 mm/s). If a user accidentally issues a move without setting the speed, the default speed shouldn't be so slow that it takes minutes to finish the move. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -27,7 +27,7 @@ class GCodeParser:
|
||||
self.is_printer_ready = False
|
||||
self.need_ack = False
|
||||
self.toolhead = self.heater_nozzle = self.heater_bed = self.fan = None
|
||||
self.speed = 1.0
|
||||
self.speed = 25.0
|
||||
self.absolutecoord = self.absoluteextrude = True
|
||||
self.base_position = [0.0, 0.0, 0.0, 0.0]
|
||||
self.last_position = [0.0, 0.0, 0.0, 0.0]
|
||||
|
||||
Reference in New Issue
Block a user