summaryrefslogtreecommitdiffstats
path: root/.Slic3r/printer/LulzBot Mini, HIPS - end.gcode
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-08-20 18:49:47 (EDT)
committer P. J. McDermott <pj@pehjota.net>2017-08-20 22:13:54 (EDT)
commit693b425d9fc62525582866ad76e6d5dc8d6c78a8 (patch)
treefda2a7176f819799bf61723aa7c2773f9bf5f959 /.Slic3r/printer/LulzBot Mini, HIPS - end.gcode
parent601339dab65e9b66bc21641a8fb7fe28ac25f29b (diff)
downloadslic3r-693b425d9fc62525582866ad76e6d5dc8d6c78a8.zip
slic3r-693b425d9fc62525582866ad76e6d5dc8d6c78a8.tar.gz
slic3r-693b425d9fc62525582866ad76e6d5dc8d6c78a8.tar.bz2
printer: Add custom start/end G-code files
G-code is easier to read in separate files than in Slic3r configuration. This G-code is based on the LulzBot Mini G-code provided by Aleph Objects. To increase speed, I added commands to set the hotend temperature without waiting and arranged some commands like G28 and G1 to run while the hotend heats up. For better clarity, I also added more comments and blank lines and vertically aligned wiping command arguments.
Diffstat (limited to '.Slic3r/printer/LulzBot Mini, HIPS - end.gcode')
-rw-r--r--.Slic3r/printer/LulzBot Mini, HIPS - end.gcode30
1 files changed, 30 insertions, 0 deletions
diff --git a/.Slic3r/printer/LulzBot Mini, HIPS - end.gcode b/.Slic3r/printer/LulzBot Mini, HIPS - end.gcode
new file mode 100644
index 0000000..ece4b93
--- /dev/null
+++ b/.Slic3r/printer/LulzBot Mini, HIPS - end.gcode
@@ -0,0 +1,30 @@
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Begin LulzBot Mini HIPS end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; Ensure moves are complete
+M400 ; Pause processing until moves complete
+
+; Begin cooling
+M104 S0 ; Set hotend temperature without waiting
+M140 S0 ; Set bed temperature without waiting
+M107 ; Turn off the print cooling fan
+
+; Move to cooling position and retract filament
+G92 E0 ; Set extruder position to 0 (origin)
+G1 X5 Y5 Z156 E-5 F10000 ; Move bed and nozzle and retract filament
+M190 R60 ; Wait for bed to cool
+
+; Move to print removal position
+M140 S0 ; Set bed temperature without waiting
+G1 X145 Y175 Z156 F10000 ; Move bed forward and toolhead right
+
+; Idle
+M84 ; Turn off stepper motors
+G90 ; Set absolute positioning mode
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; End LulzBot Mini HIPS end G-code ;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+