summaryrefslogtreecommitdiffstats
path: root/.Slic3r/printer
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2019-02-12 00:20:13 (EST)
committer P. J. McDermott <pj@pehjota.net>2019-02-12 00:22:21 (EST)
commit55e87552a3a7753de0feceea975802652ed32491 (patch)
tree97855e5ae5443f2cf53c57606b49f9cae25f513c /.Slic3r/printer
parentcaf76f1254436a2585acd6b36661d019049b4989 (diff)
downloadslic3r-55e87552a3a7753de0feceea975802652ed32491.zip
slic3r-55e87552a3a7753de0feceea975802652ed32491.tar.gz
slic3r-55e87552a3a7753de0feceea975802652ed32491.tar.bz2
printer: Parameterize temperatures in TAZ 6 G-code files
Diffstat (limited to '.Slic3r/printer')
-rw-r--r--.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - end.gcode22
-rw-r--r--.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - start.gcode26
2 files changed, 24 insertions, 24 deletions
diff --git a/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - end.gcode b/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - end.gcode
index f509e8d..73021de 100644
--- a/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - end.gcode
+++ b/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - end.gcode
@@ -1,14 +1,14 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Begin LulzBot TAZ 6 Single Extruder v2.1 PLA end G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Begin LulzBot TAZ 6 Single Extruder v2.1 end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ensure moves are complete
M400 ; Pause processing until moves complete
; Begin cooling
-M104 S140 ; XXX: MATERIAL-DEPENDENT ; Cool hotend to retraction without waiting
-M140 S45 ; XXX: MATERIAL-DEPENDENT ; Cool bed to removal temp without waiting
+M104 S<retraction_temperature> ; 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
@@ -22,7 +22,7 @@ G90 ; Restore absolute positioning mode
M117 Moving to cool...
G1 Y0 F3000 ; Move bed to cooling position
M400 ; Don't show status until moved
-M190 R45 ; XXX: MATERIAL-DEPENDENT ; Wait for bed to cool
+M190 R<removal_bed_temperature> ; Wait for bed to cool
; Move to print removal position
M117 Printing complete
@@ -35,10 +35,10 @@ M300 P200 ; Beep
M104 S0 ; Cool hotend without waiting
M140 S0 ; Cool bed without waiting
M0 Done, keep warm?
-M104 S140 ; XXX: MATERIAL-DEPENDENT ; Set hotend to retraction without waiting
-M140 S45 ; XXX: MATERIAL-DEPENDENT ; Set bed to removal temp without waiting
+M104 S<retraction_temperature> ; 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 PLA end G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; End LulzBot TAZ 6 Single Extruder v2.1 end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - start.gcode b/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - start.gcode
index 7d3b098..81da3dc 100644
--- a/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - start.gcode
+++ b/.Slic3r/printer/LulzBot TAZ 6, Single Extruder v2.1 - start.gcode
@@ -4,9 +4,9 @@
; Filament preset: [filament_preset]
; Print preset: [print_preset]
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; Begin LulzBot TAZ 6 Single Extruder v2.1 PLA start G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Begin LulzBot TAZ 6 Single Extruder v2.1 start G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Initialization, homing, and retraction
@@ -24,13 +24,13 @@ M420 S0 ; Disable bed leveling with previous matrix
; Begin heating hotend to retraction temperature
M107 ; Turn off the print cooling fan
-M104 S140 ; XXX: MATERIAL-DEPENDENT ; Set hotend temperature without waiting
+M104 S<retraction_temperature> ; Set hotend temperature without waiting
M140 S[first_layer_bed_temperature] ; Set bed temperature without waiting
; While waiting for the hotend to heat, auto-home the axes
M117 Homing all axes...
G28 ; Auto-home all axes
-M109 R140 ; XXX: MATERIAL-DEPENDENT ; Wait for hotend temperature
+M109 R<retraction_temperature> ; Wait for hotend temperature
; Retract filament before wiping
M117 Retracting...
@@ -41,13 +41,13 @@ G1 E-30 F100 ; Retract filament
;
; Begin heating hotend to wiping temperature
-M104 S140 ; XXX: MATERIAL-DEPENDENT ; Set hotend temperature without waiting
+M104 S<wiping_temperature> ; Set hotend temperature without waiting
M400 ; Don't show status until retracted
; While waiting for the hotend to heat, position the nozzle over the wiping pad
M117 Moving to wipe...
G1 X-15 Y100 F3000 ; Move nozzle over wiping pad
-M109 R140 ; XXX: MATERIAL-DEPENDENT ; Wait for hotend temperature
+M109 R<wiping_temperature> ; Wait for hotend temperature
; Wipe the nozzle
M117 Wiping...
@@ -83,13 +83,13 @@ M400 ; Don't heat or show status until wiped
;
; Begin heating hotend to probing temperature
-M104 S140 ; XXX: MATERIAL-DEPENDENT ; Set hotend temperature without waiting
+M104 S<probing_temperature> ; Set hotend temperature without waiting
; While waiting for the hotend to heat, move over first probe washer
M117 Moving to probe...
G1 X-9 Y-9 ; Move over rear left bed-leveling washer
M400 ; Don't show status until moved
-M109 R140 ; XXX: MATERIAL-DEPENDENT ; Wait for hotend temperature
+M109 R<probing_temperature> ; Wait for hotend temperature
; Probe the bed and enable bed-leveling compensation
M117 Probing bed...
@@ -113,7 +113,7 @@ G1 X140 Y140 Z2 F5000 ; Move to center
M400 ; Don't show status until centered
; Ensure the hotend and bed are at the first layer temperatures
-M109 R205 ; XXX: MATERIAL-DEPENDENT ; Wait for hotend temperature
+M109 R[first_layer_temperature] ; Wait for hotend temperature
M190 ; Wait for bed temperature
; Extrude filament back into the nozzle
@@ -122,7 +122,7 @@ G1 E0 F75 ; Slowly extrude filament back into nozzle
M400 ; Don't show status until primed
M117 Printing...
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; End LulzBot TAZ 6 Single Extruder v2.1 PLA start G-code ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; End LulzBot TAZ 6 Single Extruder v2.1 start G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;