Software design, 3D printing, and outdoor adventures

Code . Run . Eat . Sleep ↺

Posts

Manually Resuming a Failed Print at a Specific Layer

Easily resume a failed print at a specific layer by trimming the start of your G-code file and adding the below resume start G-code.

M140 Sxx ; Start heating bed

G28

M109 T0 Sxxx ; Heating to PLA temp

G92 Exxx ; Set extruder position

G0 Zxx.xx ; Set Z position

G1 F1500 Exxx

More detailed instructions are in the full post.

Read More

Creality K1 series 3D Printer Cura Start G-code

Automatically set the correct extruder and bed temperature to match the printed material when printing with the Creality K1 series 3D printer in Cura with the start G-code below.

M140 S0

M104 S0

START_PRINT EXTRUDER_TEMP={material_print_temperature} BED_TEMP={material_bed_temperature}

Read More