-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
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
[Configuration] UBL Problem #9823
Comments
You probably should shrink the effective bed size with an INSET.... And once everything stays on the bed, you can increase the INSET on the unaffected sides of the bed, one side at a time... |
this parameter? #define MESH_INSET 1 // Mesh inset margin on print area |
Yes. But if that works... In Configuration_adv.h you will be able to set the INSET for each side of the bed. There is something else wrong with your settings. But this will help you work around in and figure out the problem. |
To probe too close to the edge will give issues in the future , a lag with the endstop or anything that make busy the machine , and the positions have 1mm less , it's why , apply a margin of 2mm or more just to ensure all situations of not perfect 'endstoping' |
Can I have that inset, but then tell UBL to apply matrix points outside of the inset area so I can fill it in with G29 P2/P3? I guess the UBL raise/lower to infinity bug is fixed in one of the more recent commits to the bugfix branch but still... |
No ... Ubl is not windows Xperience with 10 years old and 300 engineers lolll Note : Bug of raise up , or raise down , is solved , i have tested three times on dual extrusion print , that go outside of the bed every layer to change color , on the old bugged releases i used G29 disable to go on pause , and G29a to back , now , i have deleted these instructions |
Do you mean, "is solved" just for you, or "is solved" in the latest code? |
@Gigahertz77 — The automated settings that determine the probing boundaries normally consider your probe offset, but for some reason this has been removed for UBL. The comment (below) says "UBL is careful not to probe outside the bed." However it still apparently tries to use the areas you can never reach. I believe the intent was that you would have to set those unreachable points manually after auto probing. However, in this case it looks like the points where your probe cannot reach are not, in fact, being left out. @Roxy-3D — Can you have a look at UBL and see how it handles the probe boundaries? First of all, there is this block from #if ENABLED(AUTO_BED_LEVELING_UBL)
#define _MESH_MIN_X (max(X_MIN_BED + MESH_INSET, X_MIN_POS)) // UBL is careful not to probe off the bed. It does not
#define _MESH_MIN_Y (max(Y_MIN_BED + MESH_INSET, Y_MIN_POS)) // need *_PROBE_OFFSET_FROM_EXTRUDER in the mesh dimensions
#define _MESH_MAX_X (min(X_MAX_BED - (MESH_INSET), X_MAX_POS))
#define _MESH_MAX_Y (min(Y_MAX_BED - (MESH_INSET), Y_MAX_POS))
#else
#define _MESH_MIN_X (max(X_MIN_BED + MESH_INSET, X_MIN_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
#define _MESH_MIN_Y (max(Y_MIN_BED + MESH_INSET, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
#define _MESH_MAX_X (min(X_MAX_BED - (MESH_INSET), X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
#define _MESH_MAX_Y (min(Y_MAX_BED - (MESH_INSET), Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
#endif And then in #define MESH_X_DIST (float(MESH_MAX_X - (MESH_MIN_X)) / float(GRID_MAX_POINTS_X - 1))
#define MESH_Y_DIST (float(MESH_MAX_Y - (MESH_MIN_Y)) / float(GRID_MAX_POINTS_Y - 1)) Am I correct in my assumption that your plan was to allow people to specify the whole bed, even if their probe cannot reach it, and then have them do manual probing for the points the probe cannot reach? A more general problem is, there is only one mesh inset, but the probe offset only applies limits to one or two sides of the bed at the most. So increasing the mesh inset is not the most ideal solution to make sure all points are reachable. |
A good rule of thumb, by the way, if your nozzle can move outside the bed, is to install your probe on the side of the nozzle where it will still be on the bed when the nozzle is outside. |
Not yet, because it's not my language, and I have a little problem to understand the right procedure. |
Hmm. If I run the instructions through Google Translate perhaps I can make them more comprehensible…. What language are you most fluent in? |
That is true. With no INSET, and a X or Y_PROBE_OFFSET_FROM_EXTRUDER it is not possible to auto probe the entire bed. But those points can be acquired and filled in easily with manual probing or with a G29 P3 (which does a smart fill). |
So it sounds like the comparison that prevents the probe from going outside of the bed is potentially failing in |
So the logic of |
Yes... I think the numbers are wrong. But if he puts a big offset (like 50mm) in... I bet it stays on the bed. And then he can start playing with one number at a time until he figures out what is wrong. |
So theoretically, you could put points off the bed if you wanted to. The probe couldn't reach them, but you could still manually set them. In that case, maybe it makes sense to skip probe points where neither the nozzle nor the probe can reach. |
In fact... That is what happens with Delta's. Each corner has a bunch of mesh points that are off the bed. |
Indeed! That's why ABL operates the way it does. It inherits directly from the work by jcrocholl.
Delta's … what? Delta's birthday? |
Or show possession. The Delta owns those locations on the bed. |
A setting I've found really useful is MIN_PROBE_X, MIN_PROBE_Y, MAX_PROBE_X, MAX_PROBE_Y. These settings allow you to override the defaults for the probable area without impacting the mesh size. So in my case I wanted to have a mesh that covers all of the bed (to allow me to print edge to edge), but to only automatically probe the area reachable by the probe (obviously) plus an extra margin because probing close to the edge of my bed gives odd results (the sensing area of the inductive probe is partly off the bed). Using the above settings with the following definitions:
does this for me and works very well. I get the centre part of the mesh probed automatically with a strip down each side which I either do a manual probe for or use auto-fill on. Note that this is not the same as using the UBL MESH_INSET which would inset the mesh by 10mm (or whatever), I have MESH_INSET set to 0 so the mesh covers my entire reachable area (which in my case is all of the bed). |
Thank you, thank you, thank you! |
I think that should work... |
@Gigahertz77 problem solved? |
No, I quit, I have try 2 days without result.
Il giorno mer 20 feb 2019 alle ore 10:21 Bo Herrmannsen <
notifications@github.com> ha scritto:
… @Gigahertz77 <https://github.com/Gigahertz77> problem solved?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#9823 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Ag2hsCwbajQNEhdxesBsjTIqTJLrYmzEks5vPROOgaJpZM4STO6H>
.
|
@thinkyhead Another one that needs to be closed. Sorry, I got bored. |
This issue is being closed due to lack of activity. If you have solved the |
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 don't know how to resolve this problem, step 1 ( G29 P1 ) after 58 test point, the probe come out of the bed. I have try every number.
Bed 220x220
#define X_PROBE_OFFSET_FROM_EXTRUDER 38 // X offset: -left +right [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER 5 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER -1.05 // Z offset: -below +above [the nozzle]
#define UBL_PROBE_PT_1_X 25 // Probing points for 3-Point leveling of the mesh
#define UBL_PROBE_PT_1_Y 200
#define UBL_PROBE_PT_2_X 25
#define UBL_PROBE_PT_2_Y 30
#define UBL_PROBE_PT_3_X 200
#define UBL_PROBE_PT_3_Y 30
The text was updated successfully, but these errors were encountered: