I've tried to print in two colours avoiding M600 (my Ender 3 V1 won't recognize it). After reading, trying, and asking in other forums I still can't get it.
Everything goes fine until the second M25 (pause). At that point, instead of waiting the nozzle moves to the next position and starts the purge. Immediately after that, it begins to "print" those two lines; the movement in the X, Y, and Z axes is done but the filament keeps retracting until it's completely out of the Bowden tube.
This is the code:
; filament change
M83 ; set E axis to relative mode
G1 E-5 F900 ; retract filament 5mm
G0 X200 Y200 Z20 ; move to safe place
M25 ; pause print, change filament
G1 E5 F900 ; purge filament
M82 ; restore E axis to absolute mode
M25 ; pause print to clear purge
G1 X180 Y180 Z0.3 F5000.0 ; Move to start position
G1 X180 Y20.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X180.4 Y20.0 Z0.3 F5000.0 ; Move to side a little
G1 X180.4 Y180 Z0.3 F1500.0 E30 ; Draw the second line
G92 E0 ; Reset Extruder
; filament change end
I truly have no idea why the printer is behaving like that. Any clue will be greatly appreciated!
Additional information:
After serveral tries I came up to this code which lead to the results shown in the pictures. Why is this happening?
; filament change
;M83 ; set E axis to relative mode
G1 E-400 F900 ; retract filament out of Bowden tube
G0 X200 Y200 Z20 ; move to safe place
M25 ; pause print, change filament
;M82 ; restore E axis to absolute mode
G1 E3 F900 ; purge filament
M25 ; pause print to clear purge
;M109 R200 ; continue when nozzle temp is 200
G1 X180 Y180 Z0.3 F5000.0 ; Move to start position
G1 X180 Y20.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X180.4 Y20.0 Z0.3 F5000.0 ; Move to side a little
G1 X180.4 Y180 Z0.3 F1500.0 E30 ; Draw the second line
;G92 E0 ; Reset Extruder
; filament change end
; next auto Generated line
G0 X99.098 Y117.198 Z2.6 ; valor original Z = 2.1
;M204 S500
M204 P500 T500
M205 X20 Y20
;TYPE:WALL-OUTER
; rest of the code
The results:
PS: I am trying to print some text. Sorry I didn't realize to tell before.

