mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-28 07:35:20 +00:00
Updated Wiki content
@@ -51,7 +51,7 @@ This test will be set detect automatically your printer firmware type and will a
|
||||
- Restore your 3D Printer settings to avoid keeping high acceleration and jerk values used for the test.
|
||||
|
||||
- Klipper:
|
||||
- Skeleton
|
||||
- Skeleton:
|
||||
|
||||
```gcode
|
||||
SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=#SquareCornerVelocity
|
||||
@@ -66,14 +66,14 @@ This test will be set detect automatically your printer firmware type and will a
|
||||
Note: You can also set `square_corner_velocity` persistently in your `printer.cfg` (restart required).
|
||||
|
||||
- Marlin 2 (Junction Deviation enabled):
|
||||
- Skeleton
|
||||
- Skeleton:
|
||||
|
||||
```gcode
|
||||
M205 J#JunctionDeviationValue
|
||||
M500
|
||||
```
|
||||
|
||||
Example:
|
||||
- Example:
|
||||
|
||||
```gcode
|
||||
M205 J0.012
|
||||
@@ -93,14 +93,14 @@ This test will be set detect automatically your printer firmware type and will a
|
||||
```
|
||||
|
||||
- Marlin Classic Jerk / Marlin Legacy:
|
||||
- Skeleton — set the per-axis jerk limits using `M205` (X/Y optional depending on firmware build):
|
||||
- Skeleton: — set the per-axis jerk limits using `M205` (X/Y optional depending on firmware build):
|
||||
|
||||
```gcode
|
||||
M205 X#JerkX Y#JerkY
|
||||
M500
|
||||
```
|
||||
|
||||
Example:
|
||||
- Example:
|
||||
|
||||
```gcode
|
||||
M205 X10 Y10
|
||||
@@ -109,14 +109,14 @@ This test will be set detect automatically your printer firmware type and will a
|
||||
|
||||
- RepRap (Duet / RepRapFirmware):
|
||||
**IMPORTANT:** Set in mm/min so convert from mm/s to mm/min multiply by 60.
|
||||
- Skeleton
|
||||
- Skeleton:
|
||||
|
||||
```gcode
|
||||
M566 X#max_instantaneous_change Y#max_instantaneous_change
|
||||
M500 ; if supported by your board
|
||||
```
|
||||
|
||||
Example (Duet-style):
|
||||
- Example (Duet-style):
|
||||
|
||||
```gcode
|
||||
M566 X3000 Y3000
|
||||
|
||||
@@ -82,20 +82,20 @@ Pre-requisites:
|
||||
- Into your printer firmware settings save the values you found (Type, frequency/cies and damp)
|
||||
- Save it into Orca's printer profile settings in Printer settings/ Machine G-code/ Machine start G-code using the following G-code:
|
||||
- Klipper:
|
||||
- Skeleton
|
||||
- Skeleton:
|
||||
|
||||
```gcode
|
||||
SET_INPUT_SHAPER SHAPER_TYPE=TYPE SHAPER_FREQ_X=#Xfrequency DAMPING_RATIO_X=#XDamping SHAPER_FREQ_Y=#Yfrequency DAMPING_RATIO_Y=#YDamping
|
||||
```
|
||||
|
||||
Example
|
||||
- Example:
|
||||
|
||||
```gcode
|
||||
SET_INPUT_SHAPER SHAPER_TYPE=MZV SHAPER_FREQ_X=37.25 DAMPING_RATIO_X=0.16 SHAPER_FREQ_Y=37.5 DAMPING_RATIO_Y=0.06
|
||||
```
|
||||
|
||||
- Marlin:
|
||||
- Skeleton
|
||||
- Skeleton:
|
||||
|
||||
```gcode
|
||||
M593 X F#Xfrequency D#XDamping
|
||||
@@ -103,7 +103,7 @@ Pre-requisites:
|
||||
M500
|
||||
```
|
||||
|
||||
Example
|
||||
- Example
|
||||
|
||||
```gcode
|
||||
M593 X F37.25 D0.16
|
||||
@@ -112,25 +112,25 @@ Pre-requisites:
|
||||
```
|
||||
|
||||
- RepRap:
|
||||
- Skeleton for RepRap 3.3 and later
|
||||
- Skeleton: for RepRap 3.3 and later
|
||||
|
||||
```gcode
|
||||
M593 P#Type F#frequency S#Damping
|
||||
```
|
||||
|
||||
Example RepRap 3.4 and later
|
||||
- Example RepRap 3.4 and later
|
||||
|
||||
```gcode
|
||||
M593 P"ZVD" F37.25 S0.16
|
||||
```
|
||||
|
||||
- Skeleton for RepRap 3.2 and earlier
|
||||
- Skeleton: for RepRap 3.2 and earlier
|
||||
|
||||
```gcode
|
||||
M593 F#frequency
|
||||
```
|
||||
|
||||
Example Legacy (RepRap 3.2 and earlier)
|
||||
- Example Legacy (RepRap 3.2 and earlier)
|
||||
|
||||
```gcode
|
||||
M593 F37.25
|
||||
|
||||
@@ -71,7 +71,25 @@ For long pages, include a table of contents at the top to help readers find sect
|
||||
- [Home](#home)
|
||||
- [Index and Navigation](#index-and-navigation)
|
||||
- [File Naming and Organization](#file-naming-and-organization)
|
||||
- [Orca to Wiki Redirection](#orca-to-wiki-redirection)
|
||||
- [Formatting and Style](#formatting-and-style)
|
||||
- [Markdown Formatting](#markdown-formatting)
|
||||
- [Alerts and Callouts](#alerts-and-callouts)
|
||||
- [Images](#images)
|
||||
- [Image Sources](#image-sources)
|
||||
- [OrcaSlicer Resources](#orcaslicer-resources)
|
||||
- [Wiki Images](#wiki-images)
|
||||
- [Image Naming](#image-naming)
|
||||
- [Image Placement](#image-placement)
|
||||
- [Linking Images](#linking-images)
|
||||
- [Examples](#examples)
|
||||
- [Avoid the Following](#avoid-the-following)
|
||||
- [Resize Images](#resize-images)
|
||||
- [Image Cropping and Highlighting](#image-cropping-and-highlighting)
|
||||
- [Recommended Formats](#recommended-formats)
|
||||
- [Structuring Content](#structuring-content)
|
||||
- [Commands and Code Blocks](#commands-and-code-blocks)
|
||||
- [External Links](#external-links)
|
||||
```
|
||||
|
||||
> [!NOTE]
|
||||
|
||||
Reference in New Issue
Block a user