Skip to content

Commit

Permalink
Update settings path
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSin- committed Oct 30, 2024
1 parent 6ffabf5 commit bceab42
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions wiki/Slicers.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,42 +16,46 @@

### Prusa

**Start GCODE** - all must be a single line
Printer -> Custom G-code -> **Start G-code** - all must be a single line
```
PRINT_START TOOL_TEMP={first_layer_temperature[initial_tool]} {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif} {if is_extruder_used[2]}T2_TEMP={first_layer_temperature[2]}{endif} {if is_extruder_used[3]}T3_TEMP={first_layer_temperature[3]}{endif} {if is_extruder_used[4]}T4_TEMP={first_layer_temperature[4]}{endif} {if is_extruder_used[5]}T5_TEMP={first_layer_temperature[5]}{endif} BED_TEMP=[first_layer_bed_temperature] TOOL=[initial_tool]
```

**Tool change GCODE**
Printer -> Custom G-code -> **Tool change G-code**
```
M104 S{temperature[next_extruder]} T[next_extruder] ; set new tool temperature so it can start heating while changing
```

**NOTE**: add this as a second line if you use prime tower
```
G1 X{wipe_tower_x} Y{wipe_tower_y} F{travel_speed*60} ; Move to wipe tower before tool change
```

### Orca

**Start GCODE** - all must be a single line
Printer settings -> Machine G-code -> **Machine start G-code** - all must be a single line
```
PRINT_START TOOL_TEMP={first_layer_temperature[initial_tool]} {if is_extruder_used[0]}T0_TEMP={first_layer_temperature[0]}{endif} {if is_extruder_used[1]}T1_TEMP={first_layer_temperature[1]}{endif} {if is_extruder_used[2]}T2_TEMP={first_layer_temperature[2]}{endif} {if is_extruder_used[3]}T3_TEMP={first_layer_temperature[3]}{endif} {if is_extruder_used[4]}T4_TEMP={first_layer_temperature[4]}{endif} {if is_extruder_used[5]}T5_TEMP={first_layer_temperature[5]}{endif} BED_TEMP=[first_layer_bed_temperature] TOOL=[initial_tool]
```

**Tool change GCODE**
Printer settings -> Machine G-code -> **Machine tool change G-code**
```
;Leave blank
```

### Cura

**Start GCODE** - all must be a single line
Machine Settings -> Printer -> **Start G-code** - all must be a single line
```
PRINT_START TOOL_TEMP={material_print_temperature_layer_0} T{initial_extruder_nr}_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0} TOOL={initial_extruder_nr}
```

**Tool change GCODE**
Machine Settings -> Printer -> Tool n -> **Extruder Start G-code**
```
;Leave blank
```

**Pre tool change GCODE** (as of 5.9)
Machine Settings -> Printer -> Tool n -> **Pre tool change G-code** - 5.9+
```
M104 S{material_print_temperature} T{extruder_nr}
```

0 comments on commit bceab42

Please sign in to comment.