From 83865a5535ac376974d48d955ee05f646cef2c79 Mon Sep 17 00:00:00 2001 From: daid Date: Thu, 15 May 2014 19:04:58 +0200 Subject: [PATCH] Add missing start3/4 and end3/4 --- Cura/util/profile.py | 118 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 17cd1896..05e6960a 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -332,6 +332,124 @@ G90 ;absolute positioning ;{profile_string} """, str, 'alteration', 'alteration') ####################################################################################### +setting('start3.gcode', """;Sliced at: {day} {date} {time} +;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} +;Print time: {print_time} +;Filament used: {filament_amount}m {filament_weight}g +;Filament cost: {filament_cost} +;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line +;M104 S{print_temperature} ;Uncomment to add your own temperature line +;M109 T1 S{print_temperature2} ;Uncomment to add your own temperature line +;M109 T0 S{print_temperature} ;Uncomment to add your own temperature line +G21 ;metric values +G90 ;absolute positioning +M107 ;start with the fan off + +G28 X0 Y0 ;move X/Y to min endstops +G28 Z0 ;move Z to min endstops + +G1 Z15.0 F{travel_speed} ;move the platform down 15mm + +T2 ;Switch to the 2nd extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F200 E-{retraction_dual_amount} + +T1 ;Switch to the 2nd extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F200 E-{retraction_dual_amount} + +T0 ;Switch to the first extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F{travel_speed} +;Put printing message on LCD screen +M117 Printing... +""", str, 'alteration', 'alteration') +####################################################################################### +setting('end3.gcode', """;End GCode +M104 T0 S0 ;extruder heater off +M104 T1 S0 ;extruder heater off +M104 T2 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 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more +G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way + +M84 ;steppers off +G90 ;absolute positioning +;{profile_string} +""", str, 'alteration', 'alteration') +setting('start4.gcode', """;Sliced at: {day} {date} {time} +;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} +;Print time: {print_time} +;Filament used: {filament_amount}m {filament_weight}g +;Filament cost: {filament_cost} +;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line +;M104 S{print_temperature} ;Uncomment to add your own temperature line +;M109 T2 S{print_temperature2} ;Uncomment to add your own temperature line +;M109 T1 S{print_temperature2} ;Uncomment to add your own temperature line +;M109 T0 S{print_temperature} ;Uncomment to add your own temperature line +G21 ;metric values +G90 ;absolute positioning +M107 ;start with the fan off + +G28 X0 Y0 ;move X/Y to min endstops +G28 Z0 ;move Z to min endstops + +G1 Z15.0 F{travel_speed} ;move the platform down 15mm + +T3 ;Switch to the 4th extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F200 E-{retraction_dual_amount} + +T2 ;Switch to the 3th extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F200 E-{retraction_dual_amount} + +T1 ;Switch to the 2nd extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F200 E-{retraction_dual_amount} + +T0 ;Switch to the first extruder +G92 E0 ;zero the extruded length +G1 F200 E10 ;extrude 10mm of feed stock +G92 E0 ;zero the extruded length again +G1 F{travel_speed} +;Put printing message on LCD screen +M117 Printing... +""", str, 'alteration', 'alteration') +####################################################################################### +setting('end4.gcode', """;End GCode +M104 T0 S0 ;extruder heater off +M104 T1 S0 ;extruder heater off +M104 T2 S0 ;extruder heater off +M104 T3 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 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more +G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way + +M84 ;steppers off +G90 ;absolute positioning +;{profile_string} +""", str, 'alteration', 'alteration') +####################################################################################### +####################################################################################### setting('support_start.gcode', '', str, 'alteration', 'alteration') setting('support_end.gcode', '', str, 'alteration', 'alteration') setting('cool_start.gcode', '', str, 'alteration', 'alteration') -- 2.30.2