-
-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Cartographer3D V3 with Touch configuration
We need to be able to override some settings for `[bed_mesh]` so the include in `user_templates/printer.cfg` is placed after the bed mesh definitions and not in the probe section. Cartographer3D V3 doesn't touch the bed with the nozzle except for the `CARTOGRAPHER_TOUCH` command. Therefore we need to pay attention to the nozzle temperature for that. But not for all the other actions like homing or quad gantry leveling or some such. The documentation for Cartographer3D advises against an adaptive bed mesh and the full bed mesh will be fast enough in most cases, so we deactivated the adaptive bed mesh if a Cartographer3D probe is used.
- Loading branch information
1 parent
621e0ea
commit 4a66521
Showing
9 changed files
with
166 additions
and
2 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
config/hardware/accelerometers/cartographer_v3_accelerometer.cfg
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,6 @@ | ||
[include generics/adxl345_hardware_spi1.cfg] | ||
|
||
# You need to include the section for the cartographer in your printer.cfg and include cartographer_virtual.cfg | ||
# and set the correct serial for this to work. | ||
[adxl345] | ||
cs_pin: scanner:PA3 |
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,48 @@ | ||
# This probe type is for a cartographer 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 cartographer Klipper plugin! | ||
|
||
[gcode_macro _USER_VARIABLES] | ||
variable_probe_type_enabled: "cartographer_touch" | ||
variable_startprint_actions: "bed_soak", "extruder_preheating", "chamber_soak", "tilt_calib", "z_offset", "bedmesh", "clean", "cartographer_touch", "extruder_heating", "purge", "clean", "primeline" | ||
variable_homing_zhop: 10 | ||
gcode: | ||
|
||
# Cartographer 3D probe definition also include the probe management macro directly from here | ||
[include ../../../macros/base/probing/generic_probe.cfg] | ||
|
||
[scanner] | ||
mcu: scanner | ||
# Offsets are measured from the centre of your coil, to the tip of your nozzle | ||
# on a level axis. It is vital that this is accurate. | ||
x_offset: 0 | ||
# adjust for your cartographers offset from nozzle to middle of coil | ||
y_offset: 15 | ||
# adjust for your cartographers offset from nozzle to middle of coil | ||
backlash_comp: 0.5 | ||
# Backlash compensation distance for removing Z backlash before measuring | ||
# the sensor response. | ||
sensor: cartographer | ||
# this must be set as cartographer unless using IDM etc. | ||
sensor_alt: carto | ||
# alternate name to call commands. CARTO_TOUCH etc | ||
mesh_runs: 2 | ||
# Number of passes to make during mesh scan. | ||
|
||
[bed_mesh] | ||
speed: 200 | ||
# movement speed of toolhead during bed mesh | ||
horizontal_move_z: 5 | ||
# height of scanner during bed mesh scan | ||
probe_count: 30, 30 | ||
algorithm: bicubic | ||
|
||
[temperature_sensor Cartographer_MCU] | ||
sensor_type: temperature_mcu | ||
sensor_mcu: scanner | ||
min_temp: 0 | ||
max_temp: 105 | ||
|
||
[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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[update_manager cartographer] | ||
type: git_repo | ||
path: ~/cartographer-klipper | ||
channel: stable | ||
origin: https://github.com/Cartographer3D/cartographer-klipper.git | ||
is_system_service: False | ||
managed_services: klipper | ||
info_tags: | ||
desc=Cartographer Probe |
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,9 @@ | ||
[update_manager cartographer] | ||
type: git_repo | ||
path: ~/cartographer-klipper | ||
channel: stable | ||
origin: https://gitee.com/NBTP/cartographer-klipper.git | ||
is_system_service: False | ||
managed_services: klipper | ||
info_tags: | ||
desc=Cartographer Probe (Gitee) |
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
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