mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-25 14:15:20 +00:00
Updated Wiki content
Binary file not shown.
|
Before Width: | Height: | Size: 463 KiB |
BIN
images/bed/bed_type_material_temperature.png
Normal file
BIN
images/bed/bed_type_material_temperature.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.5 KiB |
BIN
images/bed/bed_type_selector.png
Normal file
BIN
images/bed/bed_type_selector.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.6 KiB |
@@ -19,15 +19,30 @@ The metallic material of the nozzle: This determines the abrasive resistance of
|
|||||||
|
|
||||||
## Nozzle HRC
|
## Nozzle HRC
|
||||||
|
|
||||||
The nozzle's hardness. Zero means no checking for nozzle hardness during slicing.
|
The Nozzle Hardness ([Hardness Rockwell C](https://en.wikipedia.org/wiki/Rockwell_hardness_test)) value is used in OrcaSlicer to validate nozzle compatibility with abrasive filaments and prevent nozzle damage during printing.
|
||||||
|
|
||||||
|
| Material | Value |
|
||||||
|
|-------------------|-------|
|
||||||
|
| Disable Check | 0 |
|
||||||
|
| Brass | 2 |
|
||||||
|
| Stainless Steel | 20 |
|
||||||
|
| Hardened Steel | 55 |
|
||||||
|
| Tungsten Carbide | 85 |
|
||||||
|
|
||||||
## Auxiliary Part Cooling Fan
|
## Auxiliary Part Cooling Fan
|
||||||
|
|
||||||
Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255).
|
Enable this option if machine has auxiliary part cooling fan.
|
||||||
|
|
||||||
|
G-code command:
|
||||||
|
|
||||||
|
```gcode
|
||||||
|
M106 P2 S(0-255)
|
||||||
|
```
|
||||||
|
|
||||||
### Auxiliary Fan
|
### Auxiliary Fan
|
||||||
|
|
||||||
OrcaSlicer uses `M106 P#` / `M107 P#` to control any fans managed by the slicer.
|
OrcaSlicer uses `M106 P#` (Set Fan Speed) / `M107 P#` (Fan Off) to control any fans managed by the slicer.
|
||||||
|
The `P` parameter indicates the fan index as defined by OrcaSlicer:
|
||||||
|
|
||||||
- `P0`: part cooling fan (default layer fan)
|
- `P0`: part cooling fan (default layer fan)
|
||||||
- `P1` (if present): an additional fan
|
- `P1` (if present): an additional fan
|
||||||
|
|||||||
@@ -5,8 +5,7 @@ This feature allows users to seamlessly integrate adaptive bed mesh commands wit
|
|||||||
The implementation is designed to be straightforward, requiring no additional plugins or alterations to firmware settings, thereby enhancing user experience and print quality directly from OrcaSlicer.
|
The implementation is designed to be straightforward, requiring no additional plugins or alterations to firmware settings, thereby enhancing user experience and print quality directly from OrcaSlicer.
|
||||||

|

|
||||||
|
|
||||||
- [Bed mesh min](#bed-mesh-min)
|
- [Bed mesh](#bed-mesh)
|
||||||
- [Bed mesh max](#bed-mesh-max)
|
|
||||||
- [Probe point distance](#probe-point-distance)
|
- [Probe point distance](#probe-point-distance)
|
||||||
- [Mesh margin](#mesh-margin)
|
- [Mesh margin](#mesh-margin)
|
||||||
- [Available g-code variables for Adaptive Bed Mesh Command](#available-g-code-variables-for-adaptive-bed-mesh-command)
|
- [Available g-code variables for Adaptive Bed Mesh Command](#available-g-code-variables-for-adaptive-bed-mesh-command)
|
||||||
@@ -15,13 +14,11 @@ The implementation is designed to be straightforward, requiring no additional pl
|
|||||||
- [Klipper](#klipper)
|
- [Klipper](#klipper)
|
||||||
- [RRF](#rrf)
|
- [RRF](#rrf)
|
||||||
|
|
||||||
## Bed mesh min
|
## Bed mesh
|
||||||
|
|
||||||
This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed.
|
This option sets the min and max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately.
|
||||||
|
OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer.
|
||||||
## Bed mesh max
|
The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed.
|
||||||
|
|
||||||
This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed.
|
|
||||||
|
|
||||||
## Probe point distance
|
## Probe point distance
|
||||||
|
|
||||||
|
|||||||
@@ -51,12 +51,13 @@ This is the maximum printable height which is limited by the height of the build
|
|||||||
|
|
||||||
## Support multi bed types
|
## Support multi bed types
|
||||||
|
|
||||||
You can enable it in printer settings.
|
|
||||||
|
|
||||||
Once enabled, you can select the bed type in the drop-down menu, corresponding bed temperature will be set automatically.
|
Once enabled, you can select the bed type in the drop-down menu, corresponding bed temperature will be set automatically.
|
||||||
You can set the bed temperature for each bed type in the filament settings as demonstrated in the following image.
|
|
||||||
|
|
||||||
//TODO: UPDATE IMAGE
|

|
||||||
|
|
||||||
|
This also enabled you to set each bed type in the [filament settings](material_temperatures#bed).
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
Orca also support `curr_bed_type` variable in custom G-code.
|
Orca also support `curr_bed_type` variable in custom G-code.
|
||||||
For example, the following sample G-codes can detect the selected bed type and adjust the G-code offset accordingly for Klipper:
|
For example, the following sample G-codes can detect the selected bed type and adjust the G-code offset accordingly for Klipper:
|
||||||
@@ -71,10 +72,12 @@ For example, the following sample G-codes can detect the selected bed type and a
|
|||||||
|
|
||||||
Available bed types are:
|
Available bed types are:
|
||||||
|
|
||||||
- Cool Plate
|
- Smooth Cool Plate
|
||||||
- Engineering Plate
|
- Smooth High Temp Plate
|
||||||
- High Temp Plate
|
- Textured Cool Plate
|
||||||
- Textured PEI Plate
|
- Textured PEI Plate
|
||||||
|
- Engineering Plate
|
||||||
|
- Cool Plate (SuperTack)
|
||||||
|
|
||||||
## Best object position
|
## Best object position
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user