-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Beacon virtual probe as an optionin Klippain
- Loading branch information
Showing
2 changed files
with
35 additions
and
6 deletions.
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,22 @@ | ||
# This probe type is for a Beacon probe used directly as a virtual Z endstop | ||
# rather than with an existing physical endstop. To use this configuration, | ||
# you will need to manually add the Beacon Klipper plugin! | ||
|
||
## Then, you should just add the following two lines to your overrides and everything should work! | ||
## The rest of the allowed config entries are available on this link: config/hardware/probes/inductive_virtual.cfg | ||
# [beacon] | ||
# serial: /dev/serial/by-id/usb-Beacon_Beacon_... | ||
|
||
|
||
[gcode_macro _USER_VARIABLES] | ||
# We can declare an "inductive_virtual" probe type as it's pretty close to the Beacon way of working and should just work! | ||
variable_probe_type_enabled: "inductive_virtual" | ||
variable_startprint_actions: "bed_soak", "extruder_preheating", "chamber_soak", "tilt_calib", "extruder_heating", "purge", "clean", "z_offset", "bedmesh", "primeline" | ||
gcode: | ||
|
||
# Beacon probe definition also include the probe management macro directly from here | ||
[include ../../../macros/base/probing/generic_probe.cfg] | ||
|
||
[stepper_z] | ||
endstop_pin: probe:z_virtual_endstop | ||
homing_retract_dist: 0 |
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