Skip to content

Instantly share code, notes, and snippets.

@theanam
Created November 24, 2022 21:07
Show Gist options
  • Save theanam/a593daa8ec13777b32bd25eddd168c74 to your computer and use it in GitHub Desktop.
Save theanam/a593daa8ec13777b32bd25eddd168c74 to your computer and use it in GitHub Desktop.
Crux 1 start Gcode if you are using kp3s profile
; start heating up the bed and nozzle together
M140 S{material_bed_temperature_layer_0} ; Set bed temperature
M104 S{material_print_temperature_layer_0} T0 ; Set nozzle temp
G28 ; home all axes
M190 S{material_bed_temperature_layer_0} ; Set bed temperature and wait
M109 S{material_print_temperature_layer_0} T0 ; Set nozzle temp and wait
M117 Purge extruder
G92 E0 ; reset extruder
G1 Z5.0 F3000 ; move z up little to prevent scratching of surface
G1 X5 Y20 Z0.3 F5000.0 ; move to start-line position
G1 X5 Y175.0 Z0.3 F1500.0 E15 ; draw 1st line
G1 X5 Y175.0 Z0.4 F5000.0 ; move to side a little
G1 X5 Y20 Z0.4 F1500.0 E30 ; draw 2nd line
G92 E0 ; reset extruder
G1 Z5.0 F3000 ; move z up little to prevent scratching of surface
@theanam
Copy link
Author

theanam commented Nov 24, 2022

use with the PEI sheet only (or relocate bed clips to front and back) otherwise purge line will bump into your bed clips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment