chiark / gitweb /
Shut off the heated bed at the end code. Reduce the amount of Z lift.
authorDaid <daid303@gmail.com>
Thu, 5 Jul 2012 19:36:43 +0000 (21:36 +0200)
committerDaid <daid303@gmail.com>
Thu, 5 Jul 2012 19:36:43 +0000 (21:36 +0200)
Cura/util/profile.py

index 3586b37e0dc84990cb77d4c7b31793ca6d017011..ffc8bf32683eb06ecb067da9e9dc5731b3b70c17 100644 (file)
@@ -104,12 +104,15 @@ G1 X{machine_center_x} Y{machine_center_y} F{travel_speed} ;go to the middle of
 """,\r
 #######################################################################################\r
        'end.gcode': """;End GCode\r
-M104 S0                    ;extruder heat off\r
+M104 S0                    ;extruder heater off\r
+M140 S0                    ;heated bed heater off (if you have it)\r
+\r
 G91                        ;relative positioning\r
 G1 E-1 F300                ;retract the filament a bit before lifting the nozzle, to release some of the pressure\r
 G1 Z+0.5 E-5 F{max_z_speed};move Z up a bit and retract filament even more\r
-G1 Z+10 F{max_z_speed}     ;move Z up a bit more without retraction\r
+G1 Z+3 F{max_z_speed}      ;move Z up a bit more without retraction\r
 G28 X0 Y0                  ;move X/Y to min endstops, so the head is out of the way\r
+\r
 M84                        ;steppers off\r
 G90                        ;absolute positioning\r
 """,\r