diff options
author | Nitram <33714214+Hywelmartin@users.noreply.github.com> | 2022-08-19 19:27:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 13:27:44 -0400 |
commit | 6a91824486decfe5ae581430b42b3418b7562140 (patch) | |
tree | e965f649240072a65197e072caf9607a0bcced12 /klippy/kinematics/delta.py | |
parent | 20a28bc00ff1555e4d096af8f05f77474a3e43aa (diff) | |
download | kutter-6a91824486decfe5ae581430b42b3418b7562140.tar.gz kutter-6a91824486decfe5ae581430b42b3418b7562140.tar.xz kutter-6a91824486decfe5ae581430b42b3418b7562140.zip |
delta: Added the possibility to get where the "cone shape" of the build volume starts from Macros (#5662)
Added the possibility to get where the "cone shape" of the build volume starts from Macros
Signed-off-by: Martin Malmqvist <Volcomosq@gmx.com>
Diffstat (limited to 'klippy/kinematics/delta.py')
-rw-r--r-- | klippy/kinematics/delta.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/kinematics/delta.py b/klippy/kinematics/delta.py index 06c72456..2278dbca 100644 --- a/klippy/kinematics/delta.py +++ b/klippy/kinematics/delta.py @@ -150,6 +150,7 @@ class DeltaKinematics: 'homed_axes': '' if self.need_home else 'xyz', 'axis_minimum': self.axes_min, 'axis_maximum': self.axes_max, + 'cone_start_z': self.limit_z, } def get_calibration(self): endstops = [rail.get_homing_info().position_endstop |