Nozzle crashes before print starts.
-
@dc42 No I have a single stepper driving 2x leadscrews, they are just sharing a GT2 belt. So the S parameter should be blank?
Yes I might have confused it with M558, I was playing around quite a bit trying to get the Piezo working ( which still isn't working perfectly.
-
@ajcraig99 said in Nozzle crashes before print starts.:
@dc42 No I have a single stepper driving 2x leadscrews, they are just sharing a GT2 belt. So the S parameter should be blank?
In that case, I suggest you use mesh bed compensation instead (G29). See https://duet3d.dozuki.com/Wiki/Using_mesh_bed_compensation. It's more powerful than the old 3, 4 and 5-point levelling that used bed.g and G32.
If you have manual bed levelling screws then you can use G32 and bed.g to probe and tell you what adjustments to make to them, so as to get the bed as level as you can before you run mesh bed compensation. See https://duet3d.dozuki.com/Wiki/Using_the_manual_bed_levelling_assistant.
-
Well it seems G29 is a whole other can of worms that I don't have the patience for tonight.
G29 Error: Z probe already triggered before probing move started
Will try again tomorrow.
-
@ajcraig99 said in Nozzle crashes before print starts.:
Here is homez.g - Should this all be replaced with just a single line saying G30?
Yes, the way you have it would be correct if using an endstop. To use the probe, you would move the head into position and then use G30 to seek Z0.
-
@ajcraig99 said in Nozzle crashes before print starts.:
G29
Error: Z probe already triggered before probing move startedDo you have a deployprobe.g and retractprobe.g in the sys folder? What is in them?
-
No delploy or retract files in my directory from what I can see.
I fixed homez.g but found I would get the same false trigger error unless I added a 1 sec delay before G30 if I had an XY travel before G30, If the nozzle was already in the XY position and didn't have to travel, it would work without the delay.
So it seems I am getting false readings from the Piezo as a mechanical issue caused by XY movement?
the same happens with G29, if it's already in the first XY position, it will do the first probe, move to the second and then false trigger the moment it goes to probe.
I have the precision piezo orion which only has one adjustment pot which I will continue to play with but can I force a P500 delay before any probing move in G29 or is that a bit hacky?
Working homez.g
; homez.g ; called to home the Z axis G91 ; relative positioning G1 Z5 F6000 S2 ; lift Z relative to current position G1 X50 Y50 ; Move to probe pos G4 P1000 ; Wait 1 second G30 ; Probe Z
Non working homez.g
; homez.g ; called to home the Z axis G91 ; relative positioning G1 Z5 F6000 S2 ; lift Z relative to current position G1 X50 Y50 ; Move to probe pos G30 ; Probe Z
-
You can try adding an R value to your M558 command to add a pause before probing starts. Try M558 R1 to add one second delay.
https://duet3d.dozuki.com/Wiki/GCode#Section_M558_Set_Z_probe_type
-
-
Success! Thankyou so much for everyones help!
Now I move onto print settings.
-
Awesome!