mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-13 20:31:48 +08:00
Merge pull request #15007 from Ultimaker/CURA-10451_fix_pause_at_um
[CURA-10451] Pause at height was not working for UM printers.
This commit is contained in:
commit
e2d248b0c9
@ -67,7 +67,7 @@ class PauseAtHeight(Script):
|
|||||||
"label": "Keep motors engaged",
|
"label": "Keep motors engaged",
|
||||||
"description": "Keep the steppers engaged to allow change of filament without moving the head. Applying too much force will move the head/bed anyway",
|
"description": "Keep the steppers engaged to allow change of filament without moving the head. Applying too much force will move the head/bed anyway",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"default_value": true,
|
"default_value": false,
|
||||||
"enabled": "pause_method != \\\"griffin\\\""
|
"enabled": "pause_method != \\\"griffin\\\""
|
||||||
},
|
},
|
||||||
"disarm_timeout":
|
"disarm_timeout":
|
||||||
@ -218,7 +218,7 @@ class PauseAtHeight(Script):
|
|||||||
"label": "Beep at pause",
|
"label": "Beep at pause",
|
||||||
"description": "Make a beep when pausing",
|
"description": "Make a beep when pausing",
|
||||||
"type": "bool",
|
"type": "bool",
|
||||||
"default_value": true
|
"default_value": false
|
||||||
},
|
},
|
||||||
"beep_length":
|
"beep_length":
|
||||||
{
|
{
|
||||||
@ -478,6 +478,7 @@ class PauseAtHeight(Script):
|
|||||||
prepend_gcode += "M117 " + display_text + "\n"
|
prepend_gcode += "M117 " + display_text + "\n"
|
||||||
|
|
||||||
# Set the disarm timeout
|
# Set the disarm timeout
|
||||||
|
if pause_method != "griffin":
|
||||||
if hold_steppers_on:
|
if hold_steppers_on:
|
||||||
prepend_gcode += self.putValue(M = 84, S = 3600) + " ; Keep steppers engaged for 1h\n"
|
prepend_gcode += self.putValue(M = 84, S = 3600) + " ; Keep steppers engaged for 1h\n"
|
||||||
elif disarm_timeout > 0:
|
elif disarm_timeout > 0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user