Created
October 10, 2021 11:28
-
-
Save eip/4ae9ecd87e5ddee37b59ffbf3e481556 to your computer and use it in GitHub Desktop.
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 G-Code | |
G21 ;set units to millimeters | |
G90 ;use absolute positioning | |
M104 S{material_print_temperature_layer_0} ;set extruder temp | |
M140 S{material_bed_temperature_layer_0} ;set bed temp | |
G28 ;Home all axes | |
;G1 Z5.0 ;move platform down 5mm ;off for 2.0.3 firmware | |
G1 X0 Y20 F5000.0 ;move to intro line start position | |
M190 S{material_bed_temperature_layer_0} ;wait for bed temp | |
M109 S{material_print_temperature_layer_0} ;wait for extruder temp | |
G92 E0 ;reset extruder distance position | |
G1 Z0.28 F5000.0 ;move platform up | |
G1 Y200 F1500.0 E15 ;first intro line | |
G1 X0.4 F5000.0 ;move to side a little | |
G1 Y20 F1500.0 E30 ;second intro line | |
G1 Z5.0 ;move platform down 5mm | |
G1 X0 Y200 F5000.0 ;move to intro line end position | |
G92 E0 ;reset extruder distance position | |
; End G-Code | |
M140 S0 ;turn-off bed | |
M107 ;turn-off fan | |
G91 ;relative positioning | |
G1 E-2 F300 ;retract a bit | |
G1 Z0.5 E-5 F2400 ;retract and raise z | |
G1 Z5 ;raise z more | |
G90 ;absolute positionning | |
G1 X0 Y220 ;present print | |
M84 X Y E ;disable all steppers but z | |
M104 S0 ;turn-off hotend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment