Skip to content

Commit

Permalink
Update orcaslicer.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilouz committed May 4, 2024
1 parent 104e60f commit 0627937
Showing 1 changed file with 59 additions and 3 deletions.
62 changes: 59 additions & 3 deletions docs/slicers/orcaslicer.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
Here you will find custom build plates for OrcaSlicer.
OrcaSlicer is an open source slicer for FDM printers.

You can download it here: [GitHub](https://github.com/SoftFever/OrcaSlicer/releases/latest)


Here you will find custom build plates for OrcaSlicer:

| Creality K1/K1C |
| :---------: |
Expand All @@ -16,9 +21,9 @@ Here you will find custom build plates for OrcaSlicer.
## Download Links
<hr>

:material-download: [Creality_K1.zip](https://github.com/Guilouz/Creality-Helper-Script-Wiki/raw/main/downloads/OrcaSlicer/Creality_K1.zip)
:material-download: [Custom Build Plates for K1](https://github.com/Guilouz/Creality-Helper-Script-Wiki/raw/main/downloads/OrcaSlicer/Creality_K1.zip)

:material-download: [Creality_K1_Max.zip](https://github.com/Guilouz/Creality-Helper-Script-Wiki/raw/main/downloads/OrcaSlicer/Creality_K1_Max.zip)
:material-download: [Custom Build Plates for K1 Max](https://github.com/Guilouz/Creality-Helper-Script-Wiki/raw/main/downloads/OrcaSlicer/Creality_K1_Max.zip)


## Installation
Expand All @@ -41,6 +46,57 @@ Here you will find custom build plates for OrcaSlicer.
- Then save your printer profile.


## Configure Machine G-codes
<hr>

- Start **OrcaSlicer** and click on the icon for editing printer presets:

<img width="600" src="../../assets/img/OrcaSlicer/OrcaSlicer_01.png">

- Click on `Machine G-code` tab and define the following G-codes:

``` title="Machine start G-code"
SET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]
M140 S0
M104 S0
START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]
```

``` title="Machine end G-code"
END_PRINT
```

``` title="Before layer change G-code"
;BEFORE_LAYER_CHANGE
;[layer_z]
G92 E0
```

``` title="Layer change G-code"
SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}
;AFTER_LAYER_CHANGE
;[layer_z]
```

``` title="Layer change G-code"
SET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}
;AFTER_LAYER_CHANGE
;[layer_z]
```

``` title="Time lapse G-code (if you use Timelapse)"
TIMELAPSE_TAKE_FRAME
```

``` title="Change filament G-code (if you use M600 Support feature otherwise it must be PAUSE)"
M600
```

``` title="Pause G-code (if you use M600 Support feature otherwise it must be PAUSE)"
M600
```


## Upload Gcode files to printer
<hr>

Expand Down

0 comments on commit 0627937

Please sign in to comment.