mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Merge branch 'master' into feature_pause_at_height_optional_parking
# Conflicts: # plugins/PostProcessingPlugin/scripts/PauseAtHeight.py
This commit is contained in:
commit
e4a04c186f
3 changed files with 6 additions and 3 deletions
|
@ -505,7 +505,7 @@ class PauseAtHeight(Script):
|
||||||
# Move the head back
|
# Move the head back
|
||||||
if park_enabled:
|
if park_enabled:
|
||||||
if current_z < 15:
|
if current_z < 15:
|
||||||
prepend_gcode += self.putValue(G = 1, Z = current_z + 1, F = 300) + "\n"
|
prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + "\n"
|
||||||
prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n"
|
prepend_gcode += self.putValue(G = 1, X = x, Y = y, F = 9000) + "\n"
|
||||||
prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n"
|
prepend_gcode += self.putValue(G = 1, Z = current_z, F = 300) + " ; move back down to resume height\n"
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
"material_diameter": { "default_value": 1.75 },
|
"material_diameter": { "default_value": 1.75 },
|
||||||
|
|
||||||
"acceleration_print": { "value": 1800 },
|
"acceleration_print": { "value": 1500 },
|
||||||
"acceleration_travel": { "value": 3000 },
|
"acceleration_travel": { "value": 3000 },
|
||||||
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
"acceleration_travel_layer_0": { "value": "acceleration_travel" },
|
||||||
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
"acceleration_roofing": { "enabled": "acceleration_enabled and roofing_layer_count > 0 and top_layers > 0" },
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
"machine_name": { "default_value": "Anycubic i3 Mega X" },
|
"machine_name": { "default_value": "Anycubic i3 Mega X" },
|
||||||
"machine_width": { "default_value": 300 },
|
"machine_width": { "default_value": 300 },
|
||||||
"machine_height": { "default_value": 305 },
|
"machine_height": { "default_value": 305 },
|
||||||
"machine_depth": { "default_value": 300 }
|
"machine_depth": { "default_value": 300 },
|
||||||
|
|
||||||
|
"acceleration_print": { "value": 400 },
|
||||||
|
"acceleration_travel": { "value": 400 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue