Clicky

Loading

Report as inappropriate

I use Cura for Wanhao as my slicer. I am definitely open to try a different slicer.

I have modified the Gcode a bit to add the purge line. But the original Gcode had the same result with the 1mm distance between nozzle and build plate. I have added both the original and modified gcodes below.

Modified Gcode:
G21 ;metric values
G90 ;absolute positioning
M82 ;set extruder to absolute mode
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z15.0 F{travel_speed} ;move the platform down 15mm
G92 E0 ;zero the extruded length
G1 F200 E6 ;extrude 6 mm of feed stock
G92 E0 ;zero the extruded length again
G1 Z0 F{travel_speed} ;move the platform up 15mm
G1 X60 E9 F500 ;start purge line
G1 X100 E13 F500 ;
G92 E0 ;zero the extruded length again
G1 F{travel_speed}
M117 Printing...

Original Gcode:
G21 ;metric values
G90 ;absolute positioning
M82 ;set extruder to absolute mode
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z15.0 F{travel_speed} ;move the platform down 15mm
G92 E0 ;zero the extruded length
G1 F200 E6 ;extrude 6 mm of feed stock
G92 E0 ;zero the extruded length again
G1 F{travel_speed}
;Put printing message on LCD screen
M117 Printing...

Thanks for all the help. Much appreciated.