Created
October 22, 2019 07:22
-
-
Save ex-nerd/cf4463e40bbe2ca23bd06d6f8813e76d to your computer and use it in GitHub Desktop.
kossel pro prusaslicer intro 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
; Start heating up the base first (takes logest) | |
M140 S[first_layer_bed_temperature] | |
; Set the standby and active temperatures for "both" tools | |
G10 P0 R[temperature_0] S[temperature_0] | |
G10 P1 R[temperature_1] S[temperature_1] | |
; Home to top 3 endstops | |
G28 | |
; Allow movement outside machine limits | |
M564 S0 | |
; move to starting position to heat up | |
G1 X122.5 Y0 Z3 F6000.0 | |
; Wait for the temp to be good for the first layer | |
M109 S[first_layer_temperature] ; extruder temp | |
M190 S[first_layer_bed_temperature] ; bed temp | |
; Draw an arc along the outer edge of the print bed. | |
G92 E0.0 | |
G1 Z0.2 F6000.0 ; drop down to 0.2mm | |
G2 X106.738 Y-60.11 I-122.5 J0 E9.0 F1000.0 ; intro line | |
G2 X81.684 Y-91.291 I-106.738 J60.11 E12.5 F1000.0 ; intro line | |
G92 E0.0 | |
; Enforce machine limits | |
M564 S1 | |
M83 ; extruder relative mode | |
; Just in case someone mucked with the temperature above, make sure it’s set properly | |
M104 S[first_layer_temperature] ; set extruder temp | |
M140 S[first_layer_bed_temperature] ; set bed temp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment