Post processing for PrusaSlicer, SuperSlicer and maybe Slic3r:
In /SPP-Python/ is the Python-version of the "Cura"-move:
- Heat up, down nozzle and ooze at your discretion.
- Move to the first entry point on XYZ simultaneously.
- Before: heat up, ooze, move to first layer height (Z), move to first start point (XY). This could lead to crashing the nozzle into the clips.
- Now: heat up, ooze, move to first start point (XYZ). The Python version does not require the verbose mode enabled or any other changes to the Start-, End-, or Layer-code.
Only requirement: the gcode has to have ;HEIGHT:[layer_z] after G92 E0, or after Header G-Code. If you use a recent version of PrusaSlicer, you don't have to do anything. With Slic3r you'd have to add ;HEIGHT:[layer_z] to the "Before layer change G-Code" field.
- Option:
--xywill move to X and Y first, then drops on Z (eases-in a bit: full speed to 15 times "first layer height", then at half speed to first layer height). Omitting this option will lead to XYZ simultaneous move to first point. This will still clear the clips on the Ultimaker 2 plate. If not, you'd have to edit your start gcode to place the nozzle somewhere "better" (i.e. in the center of the bed) first. - Option:
--ocobscures slicer configuration at the end of the file. None of the settings will remain for anyone to see. - Option:
--rkremoves comments except configuration and real comments. - Option:
--rakremoves all comments. - Option:
--backupCreate a backup file, if True is passed. (Default: False). - Option:
--filecounteradds a file counter (prefix) to the output file name. - Option:
--revreverse counter (count down). - Option:
--setcounter intset counter manually to this [int]. - Option:
--digits intset counter's number of digits. I.e. 5 = 00123. - Option:
--easeinfactor intScale Factor for ease in on Z. Z moves fast to this point then slows down.Scales the first layer height by this factor. - Option:
--notprusaslicerPass argument for any other slicer (based on Slic3r) than PrusaSlicer. - Option:
--craftwaretypesPass argument if you want to view GCode in Craftware. - Option:
--orc2psCreate comments, for OcrcaSlicer to be viewed in PrusaSlicer Viewer. - Option:
--nomoveIf --nomove is provided, no changes to the Start-GCode will be made. - Option:
--numlayerAdds total number of layers to slice-info of G-Code file. - Option:
--progIf --prog is provided, a progress bar instead of layer number/percentage, will be added to your GCode file and displayed on your printer (M117). - Option:
--proglayerIf --proglayer is provided, progress is reported as layer number/of layers, (Default: False) - Option:
--pwidth intDefine the progress bar length in characters. You might need to adjust the default value. Allow two more chars for brackets. Example: [OOOOO.............]. - Option:
--pchar strSet progress bar character. (Default: O) - Required: GCode file name (will be provided by the Slicer; must be provided if used as standalone)
Add this line to your "Print Settings" under "Output options" to the "Post-Processing scrips" field:
<path to python.exe> <path to script>\Slic3rPostProcessor.py;,
or <path to python.exe> <path to script>\Slic3rPostProcessor.py --xy; (see above).
If you have one or more script active, add this to the correct spot (add new line). Scripts will be processed from top to bottom.
- The option
verbosein Slic3r (Slic3r -> Print Settings -> Output options), needs to be set to true.- In Post-Processing Scripts, add the full path to this exe (see screenshot below).
- In Slic3r -> Printer -> Custom G-Code; add this:
- Start G-Code:
; START Header; ... your header here; END Header
- End G-Code:
; START Footer; ... your footer here; END Footer
- Before layer change G-Code:
;layer:[layer_num]; \n M117 Layer [layer_num];
- Start G-Code:
CS version will no longer be maintained and has been removed.