mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-08-06 05:24:03 -06:00
🔧 Update Prusa MK3/S Configs (#777)
This commit is contained in:
parent
79009a40b2
commit
9cc84d2f1a
6 changed files with 31 additions and 7 deletions
|
@ -20,7 +20,9 @@ The `W` in Průša's `G28 W ; home all without mesh bed level` default G-code do
|
|||
Below are some example start G-code scripts from popular slicers to get you started.
|
||||
|
||||
### PrusaSlicer
|
||||
Paste the start G-code block below in the "Custom G-code" section under "Printer Settings". Use the "Custom G-code" section under "Filament Settings" to add the [Linear Advance](https://marlinfw.org/docs/features/lin_advance.html) (`M900 K0.0`) value since it can be saved on a per-filament basis.
|
||||
- Set your G-code flavor to "Marlin 2" under "Printer Settings" -> "General" -> "Firmware" -> "G-code flavor".
|
||||
- Paste the start G-code block below in the "Custom G-code" section under "Printer Settings".
|
||||
- Use the "Custom G-code" section under "Filament Settings" to add the [Linear Advance](https://marlinfw.org/docs/features/lin_advance.html) (`M900 K0.0`) value since it can be saved on a per-filament basis.
|
||||
```gcode
|
||||
G90 ; use absolute coordinates
|
||||
M83 ; extruder relative mode
|
||||
|
@ -29,7 +31,9 @@ M140 S[first_layer_bed_temperature] ; set bed temp
|
|||
M190 S[first_layer_bed_temperature] ; wait for bed temp
|
||||
G28 ; home all
|
||||
G29 ; mesh bed leveling
|
||||
M211 S0 ; Disable software endstops for intro line
|
||||
G1 X0 Z0.6 Y-3.0 F1000.0 ; go outside print area
|
||||
M211 S1 ; Enable software endstops
|
||||
M104 S[first_layer_temperature] ; set hotend temp
|
||||
M109 S[first_layer_temperature] ; wait for hotend temp
|
||||
G92 E0.0
|
||||
|
@ -49,7 +53,9 @@ M140 S{material_bed_temperature_layer_0} ; set bed temp
|
|||
M190 S{material_bed_temperature_layer_0} ; wait for bed temp
|
||||
G28 ; home all
|
||||
G29 ; mesh bed leveling
|
||||
M211 S0 ; Disable software endstops for intro line
|
||||
G1 X0 Z0.6 Y-3.0 F1000.0 ; go outside print area
|
||||
M211 S1 ; Enable software endstops
|
||||
M104 S{material_print_temperature_layer_0} ; set hotend temp
|
||||
M109 S{material_print_temperature_layer_0} ; wait for hotend temp
|
||||
G92 E0.0
|
||||
|
@ -68,7 +74,9 @@ M140 S{temperature_heatbed} ; set bed temp
|
|||
M190 S{temperature_heatbed} ; wait for bed temp
|
||||
G28 ; home all
|
||||
G29 ; mesh bed leveling
|
||||
M211 S0 ; Disable software endstops for intro line
|
||||
G1 X0 Z0.6 Y-3.0 F1000.0 ; go outside print area
|
||||
M211 S1 ; Enable software endstops
|
||||
M104 S{temperature_extruder1} ; set hotend temp
|
||||
M109 S{temperature_extruder1} ; wait for hotend temp
|
||||
G92 E0.0
|
||||
|
@ -88,7 +96,9 @@ M140 S[bed0_temperature] ; set bed temp
|
|||
M190 S[bed0_temperature] ; wait for bed temp
|
||||
G28 ; home all
|
||||
G29 ; mesh bed leveling
|
||||
M211 S0 ; Disable software endstops for intro line
|
||||
G1 X0 Z0.6 Y-3.0 F1000.0 ; go outside print area
|
||||
M211 S1 ; Enable software endstops
|
||||
M104 S[extruder0_temperature] T0 ; set hotend temp
|
||||
M109 S[extruder0_temperature] T0 ; wait for hotend temp
|
||||
G92 E0.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue