From: Daid Date: Thu, 5 Jul 2012 19:36:43 +0000 (+0200) Subject: Shut off the heated bed at the end code. Reduce the amount of Z lift. X-Git-Tag: 12.07~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f6c8f7d4ec7f2d6ad6961f5683c705c03015d62e;p=cura.git Shut off the heated bed at the end code. Reduce the amount of Z lift. --- diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 3586b37e..ffc8bf32 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -104,12 +104,15 @@ G1 X{machine_center_x} Y{machine_center_y} F{travel_speed} ;go to the middle of """, ####################################################################################### 'end.gcode': """;End GCode -M104 S0 ;extruder heat off +M104 S0 ;extruder heater off +M140 S0 ;heated bed heater off (if you have it) + G91 ;relative positioning G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure G1 Z+0.5 E-5 F{max_z_speed};move Z up a bit and retract filament even more -G1 Z+10 F{max_z_speed} ;move Z up a bit more without retraction +G1 Z+3 F{max_z_speed} ;move Z up a bit more without retraction G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way + M84 ;steppers off G90 ;absolute positioning """,