Last active
February 23, 2022 01:38
-
-
Save ianchen06/af8cf8f4f06f3bf6edc7ba1dd08df627 to your computer and use it in GitHub Desktop.
Anet A8 start end gcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;End GCode | |
M104 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Sliced at: {day} {date} {time} | |
G21 ;metric values | |
G90 ;absolute positioning | |
M82 ;set extruder to absolute mode | |
M107 ;start with the fan off | |
G28 ;move X/Y to min endstops | |
G1 X100 Y100 Z5 F3200 | |
G32 S2 | |
G0 X0 Y15 F9000 ; Go to front | |
G0 Z0.15 ; Drop to bed | |
G92 E0 ; zero the extruded length | |
G1 X40 E25 F500 ; Extrude 25mm of filament in a 4cm line | |
G92 E0 ; zero the extruded length | |
G1 E-1 F500 ; Retract a little | |
G1 X80 F4000 ; Quickly wipe away from the filament line | |
G1 Z0.3 ; Raise and begin printing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Sliced at: {day} {date} {time} | |
G21 ;metric values | |
G90 ;absolute positioning | |
M82 ;set extruder to absolute mode | |
M107 ;start with the fan off | |
G28 X0 Y0 ;move X/Y to min endstops | |
G32 | |
G1 Z5 | |
G1 X110 Y60 F3600 | |
G30 Z0.4 | |
G1 Z5 | |
G0 X0 Y15 F9000 ; Go to front | |
G0 Z0.15 ; Drop to bed | |
G92 E0 ; zero the extruded length | |
G1 X40 E25 F500 ; Extrude 25mm of filament in a 4cm line | |
G92 E0 ; zero the extruded length | |
G1 E-1 F500 ; Retract a little | |
G1 X80 F4000 ; Quickly wipe away from the filament line | |
G1 Z0.3 ; Raise and begin printing. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Sliced at: {day} {date} {time} | |
G21 ;metric values | |
G90 ;absolute positioning | |
M82 ;set extruder to absolute mode | |
M107 ;start with the fan off | |
G28 X0 Y0 ;move X/Y to min endstops | |
G28 Z0 ;move Z to min endstops | |
G29 | |
G0 X0 Y15 F9000 ; Go to front | |
G0 Z0.15 ; Drop to bed | |
G92 E0 ; zero the extruded length | |
G1 X40 E25 F500 ; Extrude 25mm of filament in a 4cm line | |
G92 E0 ; zero the extruded length | |
G1 E-1 F500 ; Retract a little | |
G1 X80 F4000 ; Quickly wipe away from the filament line | |
G1 Z0.3 ; Raise and begin printing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment