-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
[FR] Option to drop to a safe Z-height after Homing during bed leveling #1670
Comments
Do you also have this problem in Marlin emulated mode? |
Tried to test that and stumbled upon #1657 bug. Just found that report and how to get the screen working again, so I'm gonna test it in a minute. As a temp fix, I changed this line from
to: mustStoreCmd("G28\nG1 Z150 F1500\n"); // only the first time, home the printer Not an eloquent solution by a long shot, but it does work to keep it from messing up the belts at least. |
In Marlin Mode, UBL Mesh Edit works great. It drops maybe 30 in height so it gets down to a safe area, then moves out to the point you selected |
Maybe @digant73 could help. |
Don't know if what has a working display? All of the display screens dealing with UBL seem to be working when I compiled the latest from the repo. |
digant has a broken display and is waiting for a replacement. |
digant73 is a programmer who created the Mash Editor |
As far as I understand the problem is when you move to mesh tuner and the nozzle is moved on XY coord.. The tuner uses G42. It is strange that the problem is not avoided by marlin. No I don't have a delta printer but I understood the problem.If an indication of delta printer is returned by marlin, the fix is easy. Otherwise a new configuration param is needed |
In Marlin, it looks like it issues a G1 command to drop to a lower Z first, and then a G42 to move to the mesh spot, then G1 again to get to the final height for the spot. |
@lightmaster comment it out only line 12 in MeshTuner.c such as: // if (infoMachineSettings.zProbe == ENABLED) so probeHeighStop() is always executed (it raises the nozzle by the retract value configured in config.ini) even if you don't have any probe (as it should be in your case). If I'm not wrong I added "if (infoMachineSettings.zProbe == ENABLED)" because other users had the opposite problem. I have to check in the history of my PRs |
If that raises the nozzle, wouldn't I want it not to be executed? The problem is that it does a homing, which raises the hotend to its max height, and then it doesn't drop down any before moving to the XY coord. Also, if I'm reading this code right, this is the code that is run every time you go to a new point, and I think this line is getting run each time, cuz it does jump up a little when I tell it to go to a new point. |
probeHeighStop() is not executed in your printer because you don't have a probe I suppose. If you comment the line |
Add `IS_DELTA` to configuration.h Prevent `probeHeightStop()` on Delta printers Drop Delta printers by 50mm after homing during a Mesh Edit. This amount **should** be enough on most Delta printers to prevent a tower from crashing if the first point used is directly under a tower.
Did not help. Hotend crashing into top of frame and then into bed By first dropping down by 30mm after homing, it can then move wherever it wants to laterally without the towers crashing into the top of the frame. ie: G28 ; Home
G91 ; Set relative positioning
G1 Z-30 ; Drop 30mm below current position
G90 ; Set absolute positioning |
Feature added and merged in PR #1677 |
@lightmaster please refer to PR #1716 making configurable the Z height applied after G28. It improves your PR and fixes the crash you verified on Probe Offset menu. |
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. |
Is your feature request related to a problem? Please describe.
Unable bed level from touch screen when using a Delta printer, since it tries to move along X/Y before dropping down to where X/Y can move freely. This causes the belts to grind against the stepper gear repeated and afterwards the printer thinks that it is at a location that its not actually at.
Describe the solution you'd like
There needs to be an optional z-height to drop by before attempting to move laterally to a X/Y location.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: