-
-
Notifications
You must be signed in to change notification settings - Fork 937
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bed types WIKI document and link
- Loading branch information
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Multiple 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. | ||
You can set the bed temperature for each bed type in the filament settings as demonstrated in the following image. | ||
![multi_bed](./images/bed-types.gif) | ||
|
||
|
||
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: | ||
``` | ||
{if curr_bed_type=="Textured PEI Plate"} | ||
SET_GCODE_OFFSET Z=-0.05 | ||
{else} | ||
SET_GCODE_OFFSET Z=0.0 | ||
{endif} | ||
``` | ||
|
||
available bed types are: | ||
``` | ||
"Cool Plate" | ||
"Engineering Plate" | ||
"High Temp Plate" | ||
"Textured PEI Plate" | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters