Skip to content

Commit bc545e2

Browse files
committed
improvements - I hope.
1 parent 283cea7 commit bc545e2

File tree

7 files changed

+136
-52
lines changed

7 files changed

+136
-52
lines changed

README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,14 @@ This tool basically looks for `; skirt` and collects this block _(skirts, perime
1818
* The option `verbose` in Slic3r _(Slic3r -> Print Settings -> Output options)_, needs to be set to true.
1919
* In Post-Processing Scripts, add the full path to _this_ exe (see screenshot below).
2020
* In Slic3r -> Printer -> Custom G-Code; add this:
21-
* Start G-Code: `; END Header`
22-
* End G-Code: `; END Footer`
21+
* Start G-Code:
22+
* `; START Header`
23+
* `; ... your header here`
24+
* `; END Header`
25+
* End G-Code:
26+
* `; START Footer`
27+
* `; ... your footer here`
28+
* `; END Footer`
2329
* Before layer change G-Code: `;layer:[layer_num]; \n M117 Layer [layer_num];`
2430

2531
![Print Settings](https://github.com/foreachthing/Slic3rPostProcessing/blob/master/misc/slic3r_print_settings.png)
@@ -28,13 +34,21 @@ This tool basically looks for `; skirt` and collects this block _(skirts, perime
2834

2935
## Standalone:
3036
Pass your GCode file, from Slic3r, to this exe. Either provide an output filename or not. If no output filename is given, then the original file will be overwritten.
31-
Example: `Slic3rPostProcessing.exe "c:\temp\myfile.gcode" "c:\temp\mynewfile.gcode"`
32-
The `mynewfile.gcode` can now be viewed in CraftWare - in color!
37+
Examples:
38+
- Simple: `Slic3rPostProcessing.exe -i "c:\temp\myfile.gcode" -o "c:\temp\mynewfile.gcode"`
39+
The `mynewfile.gcode` can now be viewed in CraftWare - in color!
3340

41+
- To stop the bed heater after 2.5 mm:
42+
`Slic3rPostProcessing.exe -i "c:\temp\myfile.gcode" -o "c:\temp\mynewfile.gcode" -s2.5`
3443

3544

45+
### Console
46+
Current console:
47+
![console](https://github.com/foreachthing/Slic3rPostProcessing/blob/master/misc/console.png)
3648

37-
## GCode reviewd in CraftWare:
49+
50+
51+
## GCode reviewed in CraftWare:
3852
* before:
3953
![before](https://github.com/foreachthing/Slic3rPostProcessing/blob/master/misc/slicer_before.png)
4054
* after:

Slic3rPostProcessing/Program.cs

Lines changed: 98 additions & 46 deletions
Large diffs are not rendered by default.

Slic3rPostProcessing/Properties/Settings.Designer.cs

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Slic3rPostProcessing/Properties/Settings.settings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
<Setting Name="_UpdateRequired" Type="System.Boolean" Scope="User">
99
<Value Profile="(Default)">True</Value>
1010
</Setting>
11+
<Setting Name="_intCounterSize" Type="System.Int32" Scope="User">
12+
<Value Profile="(Default)">5</Value>
13+
</Setting>
1114
</Settings>
1215
</SettingsFile>

Slic3rPostProcessing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This tool basically looks for `; skirt` and collects this block _(skirts, perime
2828

2929
## Standalone:
3030
Pass your GCode file, from Slic3r, to this exe. Either provide an output filename or not. If no output filename is given, then the original file will be overwritten.
31-
Example: `Slic3rPostProcessing.exe "c:\temp\myfile.gcode" "c:\temp\mynewfile.gcode"`
31+
Example: `Slic3rPostProcessing.exe -i "c:\temp\myfile.gcode" -o "c:\temp\mynewfile.gcode"`
3232
The `mynewfile.gcode` can now be viewed in CraftWare - in color!
3333

3434

Slic3rPostProcessing/app.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
<setting name="_UpdateRequired" serializeAs="String">
1414
<value>True</value>
1515
</setting>
16+
<setting name="_intCounterSize" serializeAs="String">
17+
<value>5</value>
18+
</setting>
1619
</Slic3rPostProcessing.Properties.Settings>
1720
</userSettings>
1821
</configuration>

misc/console.png

47.6 KB
Loading

0 commit comments

Comments
 (0)