Created
August 20, 2017 23:26
-
-
Save elliotboney/eb2c06c4d2aa8153616bd9f614c34359 to your computer and use it in GitHub Desktop.
My AnetA8 Start gcode for Simplify3D
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
; | |
; START Elliot Custom | |
; | |
M155 S5 ; turn on auto temp reporting | |
G21 ;metric values | |
M117 Setting Temps to [extruder0_temperature]/[bed1_temperature]... | |
M104 S[extruder0_temperature] T0; Setting Extruder Temp | |
M145 B[bed1_temperature] H[extruder0_temperature] ; send temps to LCD | |
M117 Waiting for Tip and Bed Temps... | |
M190 S[bed1_temperature]; Wait for bed | |
M109 S[extruder0_temperature] T0; Wait for tip | |
M117 Done Heating | |
; Temps are ready | |
G90 ;absolute positioning | |
M82 ;set extruder to absolute mode | |
M117 Homing... | |
G28 ;Home all | |
M117 Auto Leveling... | |
M140 S0; turn off bed for leveling | |
G29 T V4; Auto level! | |
M140 S[bed1_temperature] ; Turn bed back on now that leveling is done | |
M117 Purge nozzle and wipe... | |
G0 X10 F9000 ; Go to front | |
G0 Y5 F9000 ; Go to front | |
G0 Z0.2 ; Drop to bed | |
G92 E0 ; zero the extruded length | |
G0 X100 E8 F4000 ; Extrude 8mm of filament in a 8cm line | |
G0 X120 F4000 ; Quickly wipe away from the filament line | |
G92 E0 ; zero the extruded length | |
M117 Makin Shit... | |
G0 | |
; | |
; END Elliot Custom | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment