Auto Level Question/Issue?
-
a better photo
-
@jkdp, you have S0 in your M671 command, so you are telling it not to make any adjustments.
-
I initially had it at 1 and still had no resultsm and I had read online through another forum that changing it from 1mm to 0 would make the leadscrew adjustment to 0,which also gave me no result, I will change that back to 1mm? or 3mm? and give it a try, I will have to try after this t-Rex skull from MakerBot is completed, unfortunately that won't be for a few days more as it's being printed at 370x370x600. I will give that a try and post my results this weekend. and pictures of the t-Rex skull. thanks you very much, for the help greatly appreciated.
-
@jkdp the S value is the maximum correction to apply in mm. So S0 means no correction.
-
ok my print finished. I've changed the S parameter in my config.g from (M671 X:-150:-150:800:800 Y-10:850:850:-10 S0) to (M671 X:-150:-150:800:800 Y-10:850:850:-10 S3) and when I run the autolevel (g32) still no corrections are made to leadscrews it only shows me in my g-code console "Bed equation fits points [25.0, 25.0, -0.047] [25.0, 720.0, 0.219] [650.0, 720.0, 0.641] [650.0, 25.0, 0.391]" the paramaeters do not change no matter how many times I run it.
-
finished print - t-rex skull by MakerBot
-
@jkdp said in Auto Level Question/Issue?:
ok my print finished. I've changed the S parameter in my config.g from (M671 X:-150:-150:800:800 Y-10:850:850:-10 S0) to (M671 X:-150:-150:800:800 Y-10:850:850:-10 S3) and when I run the autolevel (g32) still no corrections are made to leadscrews it only shows me in my g-code console "Bed equation fits points [25.0, 25.0, -0.047] [25.0, 720.0, 0.219] [650.0, 720.0, 0.641] [650.0, 25.0, 0.391]" the paramaeters do not change no matter how many times I run it.
The S parameter in the last G30 command in bed.g needs to match the number of leadscrews. You must be using S3 in that command, but you need S4 because you have 4 leadscrews according to your M671 command. So it's doing old-style 3-point bed compensation instead.
-
I already have the s4 command
m561
G28 ; home
M401 ; deploy Z probe
G30 P0 X5 Y5 Z-99999 ;probe near front right (FR) lead screw
G30 P1 X5 Y720 Z-99999 ;probe near rear right (RR) lead screw
G30 P2 X650 Y720 Z-99999 ;probe near real left (RL) lead screw
G30 P3 X650 Y5 Z-99999 S4 ;probe near a front left (FL)
G30 p4 X325 Y350 z-99999
M402 ; retract probe
G29 S1 -
ok for reference I just attempted it this way, and also got no leadscrew adjustment.
m561
G28 ; home
M401 ; deploy Z probe
G30 P0 X5 Y5 Z-99999 ;probe near front right (FR) lead screw
G30 P1 X5 Y720 Z-99999 ;probe near rear right (RR) lead screw
G30 P2 X650 Y720 Z-99999 ;probe near real left (RL) lead screw
G30 P3 X650 Y5 Z-99999 ;probe near a front left (FL)
G30 p4 X325 Y350 z-99999 S4
M402 ; retract probe
G29 S1 -
@jkdp That print turned out quite well!
-
@jkdp said in Auto Level Question/Issue?:
ok for reference I just attempted it this way, and also got no leadscrew adjustment.
m561
G28 ; home
M401 ; deploy Z probe
G30 P0 X5 Y5 Z-99999 ;probe near front right (FR) lead screw
G30 P1 X5 Y720 Z-99999 ;probe near rear right (RR) lead screw
G30 P2 X650 Y720 Z-99999 ;probe near real left (RL) lead screw
G30 P3 X650 Y5 Z-99999 ;probe near a front left (FL)
G30 p4 X325 Y350 z-99999 S4
M402 ; retract probe
G29 S1But was that with
M671 X:-150:-150:800:800 Y-10:850:850:-10 S4
in config.g? -
Yes I had s4 and still not getting any leadscrew adjustments only the "Bed equation fits points [0.0, 0.0, 0.026] [0.0, 720.0, -0.016] [650.0, 720.0, 0.155] [650.0, 0.0, 0.018]" parameter.
They've been turning out pretty good, a few settings left to adjust with the retraction settings and have a slight wobble in 2 screws, have 2 more coming in, just waiting to change them out.
thanks -
I think I need to ask for clarification on what you're expecting to happen, because I'm not sure really.
You say you want to get your motors back into sync, but don't want to home to zmax with endstops due to the time it takes to travel.
You're using G32 to run bed.g before a print and loading a heightmap for grid compensation with g29 s1.
What are you expecting G32 (bed.g) to do? When it runs do you see the z motors turning at all?
When the print starts, do you see the z motors turning to compensate for the bed surface? (G29) -
what I want to happen is lets just say new build. I want to run g28 home, all axes, then a g29 to prepare a heightmap and then run g32 before a print to sync my motors so they are perfectly plane. and then start a print.
when I run g32 the z motors are turning, when a [print starts it does compensate for bed surface. but What I want to know is why it does not level the motors prior to a print when I run g32, even if I run it numerous times it does not show me different parameters.
-
basically I want the leadscrew adjustment to be made prior to printing
-
@jkdp said in Auto Level Question/Issue?:
I already have the s4 command
m561
G28 ; home
M401 ; deploy Z probe
G30 P0 X5 Y5 Z-99999 ;probe near front right (FR) lead screw
G30 P1 X5 Y720 Z-99999 ;probe near rear right (RR) lead screw
G30 P2 X650 Y720 Z-99999 ;probe near real left (RL) lead screw
G30 P3 X650 Y5 Z-99999 S4 ;probe near a front left (FL)
G30 p4 X325 Y350 z-99999
M402 ; retract probe
G29 S1You are defining 5 probe points and using S4 on the last-but-one. So the final probe point will be ignored. You should either delete the final (G30 p4) point, or move the S4 parameter to that one.
However, I am not sure that is causing the problem. Please run M671 without parameters and check the response, to ensure that your M671 command in config.g was accepted.
-
SOME PROGRESS!! got this msg:
10:09:58 PM
M671 Z leadscrew coordinates are not configured -
I think my error be in my mapping or in my lead screw position if someone can look over that.
-
in the "settings" tab - under "Machine Properties" shouldn't all 4 z motors be listed there?
-
is the location of my m671 command in my config.g file in the correct location I do have it after the m669 and m667 but....