-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delta: endstop Z_MIN, but only for probe.. possible? #3820
Comments
ENDSTOPS_ONLY_FOR_HOMING ? |
#define ENDSTOPS_ONLY_FOR_HOMING Is defined in Configuration_adv.h I assume it should be enabled (i.e. not commented out), right? But when triggering z probe (Z_MIN) during printing, this affects the planner. (and caused not just bad height, but also offsets horizontaly) |
Maybe this is issue is related with endstop.cpp with the line 42-44 (the states are inverted) @otvald could you try to change it from Endstops::Endstops() {
enable_globally(
#if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
true
#else
false
#endif To Endstops::Endstops() {
enable_globally(
#if ENABLED(ENDSTOPS_ONLY_FOR_HOMING)
false
#else
true
#endif And check if this fix your issue |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I use am using RC-branch, and have a delta printer with z-probe integrated with nozzle (Micromake).
I can do auto level, but when running, the Z_MIN can cause problems if triggered. This happens if I don't have a completely flat bed, and the nozzle hits the glass.
Is there a way to disable Z_MIN (and only use for probing)?
The text was updated successfully, but these errors were encountered: