December 19, 2018
Description
;AFTER_LAYER_CHANGE
;2.2
For printing at 0.1mm resolution you are looking for lines:
;AFTER_LAYER_CHANGE
;2.1
etc.
You just found the place where to split the Gcode file!
- Now you copy the lines of GCode into separated file and modify the GCode as follows. Last line before the comment `;AFTER_LAYER_CHANGE` tells the printer to move in the Z axis therefore in order to simplify the process of the filament replacement I recommend increase that value a bit (add e.g. 50 mm).
For example: we have following file with the comment `;AFTER_LAYER_CHANGE` somewhere in the middle:
[BEGIN]
...
...
G1 E-0.04000 F2100.00000
G1 Z2.600 F10800.000 move in Z axis to position 2.6mm
;AFTER_LAYER_CHANGE
;2.2
G1 X107.365 Y144.542 move in to new XY position
G1 Z2.200 move in Z axis to position 2.2mm
...
...
[END]
So we split the GCode into two files and we modify the Z position in the first file in order to make the filament change easier
part1.gcode:
[BEGIN]
...
...
G1 E-0.04000 F2100.00000
G1 Z52.600 F10800.000 move in Z axis to position 52.6mm
;AFTER_LAYER_CHANGE
;2.2
part2.gcode:
G1 Z2.600 F10800.000 reverting the changes from file1.gcode
;AFTER_LAYER_CHANGE
;2.2
G1 X107.365 Y144.542
G1 Z2.200
...
...
[END]
- The last step of the process is just to print splited files and viola you have your mutlicolor print. If you have any questions regarded to this tutorial or generally to the topic of 3D printing, write me an email at [email protected]
Recommendations and warning: Watch your printer durring the first mutlicolor print. Also, I have no responsibility for possible damage on your print.
License:
Creative Commons - Attribution