blob: ece4b93b158ea1f66422ab6f20a83901df2e1ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|