G32 doesnt save after True Bed Leveling
-
@droftarts That the issue, the print is ok in the middle but not okay in the corners, adjusting the Z trigger won't solve that problem.
-
@johny said in G32 doesnt save after True Bed Leveling:
That the issue, the print is ok in the middle but not okay in the corners, adjusting the Z trigger won't solve that problem.
True but setting Zmin to -1 may.
I've never had a bed shaped like yours (high in the middle) and with so much deviation. So I've never had to consider if Zmin = 0 was an issue. I need to test it.
You can just set Zmin to -1 and see if it solves the problems at the corners.
Frederick
-
@fcwilt Will try that thank you sir
-
@droftarts I set the M208 Z-1 but the outcome its the same
The only solution is to source a new bed?
Thank you -
@johny said in G32 doesnt save after True Bed Leveling:
set the M208 Z-1 but the outcome its the same
You did use the correct syntax - not just what you posted?
What is the current setting in G31 for the Z Trigger Height?
Thanks.
Frederick
-
@johny said in G32 doesnt save after True Bed Leveling:
I set the M208 Z-1
My mistake. I've checked with @dc42, and this isn't necessary. Bed mesh compensation is applied after the limits have been checked, so the nozzle is capable of going below Z0 when bed mesh compensation is enabled.
Are you sure bed mesh compensation was enabled? Was the first layer exactly as it was before?
Have you confirmed with a straight edge that your bed is actually the same shape as the mesh is showing? It is still possible this is a measurement error of the Z probe; for example if the weight of the extruder is causing the X axis to deflect, and either bend in the middle or rotate around the X axis. That would also give a bed mesh of this shape, though it would be an extreme example.
Perhaps you could post a picture of the X axis setup of your printer.
Another option, though slightly tedious, is to do a manual bed mesh. Set the probe to type 0, and choose a 4x4 bed mesh, then run a new bed mesh (save the old one with a name first, with
G29 S3 P"mesh_name.csv"
). This will probe the bed, but for each point it will ask you to jog the nozzle down until it touches the bed (or grips a piece of paper). This should help confirm if the bed shape is the same or different from what the Z probe sees. Something like:M561 ; clear any bed transform G28 ; home as normal M558 K1 P0 H5 F300 T8000 ; create a new manual probe M557 X25:275 Y90:320 P4 ; define a 4x4 bed mesh G29 K1 S0 ; probe the bed with the manual probe and enable compensation G28 ; home to adjust bed mesh to Z0
Ian
-
@droftarts Yes, he bed compensation is enabled with the M375 P"heightmap.csv"
Is the superpinda correctly defined?
M558 P5 C"^zprobe.in" H5 F300 T8000 A3 S0.03 ; set z probe to SuperPINDA\Maybe i need to get a glass and try it out, with glass or mirror the flatness must be perfect.
-
@johny As far as I can tell the SuperPinda configuration is correct.
If the bed is not flat, the aluminium plate will pull the glass over it; the glass won't pull the aluminium flat.
If you do the manual probe procedure I outlined above, it will show if the bed is warped, or if the problem lies somewhere else. It will only take 5-10 minutes.
Ian
-
If you ever want to verify that mesh compensation is actually doing something you can load this heightmap for testing:
It's strictly for testing. It is a 9 point 200x200 map, with 0,0 at bed center, with the left most 3 points and the right most 3 points set to 0 with the middle 3 points set to 10. The greatly exaggerated values make Z axis motion very obvious as you move X from -100 to 100.
Frederick
-
@droftarts ![alt
The picture of the axis
Since i don't use mesh.g maybe its a good idea to try it?
I tried to manually do the mesh but with G29 k1 but didn't find in the documentation how can i validate each position -
As I think I mentioned G32 runs bed.g which is where you put the code to level the bed, either manually or automatically.
And G29 runs mesh.g which is where you put the code to create the height map needed to use mesh bed compensation.
It seems the config utility doesn't adhere to the intended use of these two files and may put the code that should be in mesh.g into bed.g as well.
In any case you have been using G32 to do automatic bed leveling using the two Z steppers.
But in the pictures I think I see thumb-screws. Are they for leveling the bed by hand?
If that is the case you can use G32 to help with that.
Let me know I can explain how.
Frederick
-
@johny said in G32 doesnt save after True Bed Leveling:
I tried to manually do the mesh but with G29 k1 but didn't find in the documentation how can i validate each position
Just use a piece of paper under the nozzle at each point. Move the Z down until it just grabs the paper. Click OK to move on to the next point.
Is the green arrow where the SuperPINDA is installed on your X carriage? Which side of the linear rail is it on? It really looks like the whole carriage is very front heavy, and any deflection caused by this makes the probe measure a very different distance from the bed than the nozzle. I think that is more likely to be your problem. I also don't think your G31 X and Y probe offsets from the nozzle are correct; the probe is offset a long way in Y. It is much better to place your probe next to your nozzle in the X axis, so it has no Y offset, then it will move around the same as the nozzle.
Ian
-
@fcwilt said in G32 doesnt save after True Bed Leveling:
In any case you have been using G32 to do automatic bed leveling using the two Z steppers.
I don't have mesh.g can you share it please?
-
@fcwilt said in G32 doesnt save after True Bed Leveling:
It seems the config utility doesn't adhere to the intended use of these two files and may put the code that should be in mesh.g into bed.g as well.
The config utility can't create an axis with multiple motors, so it can't produce a bed.g for independent levelling. So it creates a bed.g with the commands to do bed mesh levelling. I generally use bed.g for mesh levelling, and have macros for 2-point gantry levelling and 3-point manual bed levelling (using levelling screws, see https://docs.duet3d.com/en/User_manual/Connecting_hardware/Z_probe_manual_levelling). mesh.g was introduced with RRF 3.2. I've updated the Gcode page to make mesh.g a bit clearer: https://docs.duet3d.com/en/User_manual/Reference/Gcodes#meshg
@johny example mesh.g
M561 ; clear any bed transform G28 ; home all G29 S0 ; probe the bed and enable compensation G1 X160 Y160 F6000 ; move to bed centre G28 Z ; home Z to set Z datum
Ian
-
@johny said in G32 doesnt save after True Bed Leveling:
I don't have mesh.g can you share it please?
I can provide an example mesh.g file for creating the height map used for Mesh Compensation, using G29.
The only thing "special" about bed.g and mesh.g is that there is the command G32 which runs bed.g and G29 which runs mesh.g (if it exists).
I recommend using them as intended which keeps the DWC interface "in sync" with your code.
You could put the code for bed leveling or height map creation in any file at all - they simply won't be run using G32 or G29.
Would you like the example mesh.g file?
Frederick
-
@droftarts This mesh.g is a non-ending loop
I am in a death end
I don't know what to do next, get a new bed? the firmware should compensate the difference on a 130mm cube its not even on the entire bed, its on a small 130mm cube
I still believe there is something wrong with software, its not hardware -
@johny Ooops! Sorry, the line should be
G29 S0 ; probe the bed and enable compensation
Not just G29, because
In RRF 3.2 and later, if G29 is commanded with no S parameter, then file sys/mesh.g is run if it exists.
If you emergency stop, you should be able to get control back, then change the macro
Ian
-
@johny Did you ever do a mesh by hand? You might believe it's software, but many, many users use bed mesh without problems. I think the problem is the distance the probe is from the nozzle, and they are measuring different things. Probably your bed is flatter than the probe is reporting. You didn't answer my question earlier about the position of the probe, or if you had checked the bed with a straight edge, like a ruler.
Ian
-
@droftarts
As i understood to make the mesh manually the nozzle will travel to the first position then it waits for me to jog the Z and then I should click somewhere or send some command right? i tried to look for this and didn't found.
I have 3D printers since 2011 and i followed the innovations closely. I have a Cartesian (duet) with BLtouch that works fine, i don't touch the bed for years.
Maybe I need to flash the duet again? -
You have a Z probe and it seems to be working. No point in creating a height map by hand when you have a Z probe.
Refresh my memory - did you ever verify that the Z trigger height setting in the G31 was correct?
You won't get a good height map if that setting is wrong.
Frederick