summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2019-02-27 20:48:02 (EST)
committer P. J. McDermott <pj@pehjota.net>2019-02-27 20:48:02 (EST)
commit17cf0c6d35209a147a6bcbd08bc62913b3521ac1 (patch)
tree42c96c4d3e6fa1b11fea658d2f4e9bd6cb9d49d3
parent2d8b7e51ec924d2ad5ce219088be39ba3be5fba3 (diff)
downloadslic3r-17cf0c6d35209a147a6bcbd08bc62913b3521ac1.zip
slic3r-17cf0c6d35209a147a6bcbd08bc62913b3521ac1.tar.gz
slic3r-17cf0c6d35209a147a6bcbd08bc62913b3521ac1.tar.bz2
TAZ 6, DE v3: Adapt end G-code for dual extruder
-rw-r--r--.Slic3r/printer/LulzBot TAZ 6, Dual Extruder v3 - end.gcode30
1 files changed, 19 insertions, 11 deletions
diff --git a/.Slic3r/printer/LulzBot TAZ 6, Dual Extruder v3 - end.gcode b/.Slic3r/printer/LulzBot TAZ 6, Dual Extruder v3 - end.gcode
index 73021de..a26ffa3 100644
--- a/.Slic3r/printer/LulzBot TAZ 6, Dual Extruder v3 - end.gcode
+++ b/.Slic3r/printer/LulzBot TAZ 6, Dual Extruder v3 - end.gcode
@@ -1,21 +1,27 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Begin LulzBot TAZ 6 Single Extruder v2.1 end G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Begin LulzBot TAZ 6 Dual Extruder v3 end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ensure moves are complete
M400 ; Pause processing until moves complete
; Begin cooling
-M104 S<retraction_temperature> ; Cool hotend to retraction without waiting
+M104 S<retraction_temperature> T0 ; Cool hotend to retraction without waiting
+M104 S<retraction_temperature> T1 ; Cool hotend to retraction without waiting
M140 S<removal_bed_temperature> ; Cool bed to removal temp without waiting
M107 ; Turn off the print cooling fan
; Retract and re-prime filament
G91 ; Make below Z and E movements relative
+T0 ; Target extruder 0
G1 E-1 F300 ; Retract some filament from the nozzle
-G1 Z20 E-5 F3000 ; Lift nozzle and retract more filament
-G1 E6 F3000 ; Re-prime nozzle (T584)
+G1 Z10 E-5 F3000 ; Lift nozzle and retract more filament
+G1 E6 F3000 ; Re-prime nozzle (T584, T1724)
+T1 ; Target extruder 1
+G1 E-1 F300 ; Retract some filament from the nozzle
+G1 Z10 E-5 F3000 ; Lift nozzle and retract more filament
+G1 E6 F3000 ; Re-prime nozzle (T584, T1724)
G90 ; Restore absolute positioning mode
; Cool bed
@@ -32,13 +38,15 @@ M77 ; Stop print job timer
M300 P200 ; Beep
; Optionally keep hotend and bed warm
-M104 S0 ; Cool hotend without waiting
+M104 S0 T0 ; Cool hotend without waiting
+M104 S0 T1 ; Cool hotend without waiting
M140 S0 ; Cool bed without waiting
M0 Done, keep warm?
-M104 S<retraction_temperature> ; Set hotend to retraction without waiting
+M104 S<retraction_temperature> T0 ; Set hotend to retraction without waiting
+M104 S<retraction_temperature> T1 ; Set hotend to retraction without waiting
M140 S<removal_bed_temperature> ; Set bed to removal temp without waiting
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; End LulzBot TAZ 6 Single Extruder v2.1 end G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; End LulzBot TAZ 6 Dual Extruder v3 end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;