BlTouch not responding to commands?
-
@siblues normally the trigger time of the BLTouch is very short so you may or may not see if switch from 0 to 1000. But it shouldn't be always 1000.
You can keep the endstop in place but for the time being let's test without it configured or connected just to eliminate any variables. Ultimately you can use both or either depending on how you want to have it configured. And since you can change the configuration at any time it's as easy as having a macro that sets it how you want. A useful option is to have a z max endstop so that you can still home z after a power loss. But that's a problem for another day.
-
Phaedrux you are a miracle worker.I am playing around with the sensor now and everything seems to be working fine.I am going to eliminate the z min endstop entirely.I now have to try to learn the proper way to use it and maybe set up some macro's to test the probe and a few spots on the bed.
I now have to make sure that the extruder is working as it should and that I have the steps/mm set correctly.I also have to wire up the opto-isolated relay I have here to use the PS on trigger to turn everything on and off.
Ok when I home now how does it figure out where z0 is?I am very new to this so what would be the proper steps to take to set everything up and what I mean by that is do I have to center the extruder on the bed and issue a g30 command for that or what would be the proper steps and code to set everything up to use the bltouch to home?
-
Glad it's working out for you now.
Don't forget to measure the trigger height.
https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe
-
The mount for my probe is horrible so I am trying to get the printer running so can design and print a few items to finally button everything up.
-
What would be the right way to probe the bed simply center the extruder and issue a G30 command then a G32 of course this is after getting the offsets and heaight of the probe dialed in?
-
To home z all you need to do is center the probe and do a G30. If the probe x y and z offsets are all correct you'll get a good representation of z=0 for that point.
There are a few options beyond simple z homing though, and it will depend on your setup what you want to do.
If the bed is flat and already mechanically leveled you can call it a day and print away.
If you have multiple independent lead screws and want to do some leveling of the bed with them that can be setup. You can also have the duet probe close to your adjustment screws and it will tell you how much to adjust them to level the bed. It can also create a simple 5 point tilt plane to adjust for. This would be setup in bed.g and it would be called by G32.
If your bed isn't perfectly flat you can use mesh grid compensation to adjust for it using G29. This probes the bed in multiple points and creates a height map that is saved and can enjoy reloaded so you don't have to probe the bed every time.
So there are a lot of options. Depends what your bed is actually like.
-
Well I would like to use compensation since my bed isn't perfectly flat or at the very least it isn't totally flat. I would think being able to level the bed manually to be almost perfectly flat then issuing a G29 would give me the best results.I have 2 leadscrews but they are working together to raise and lower the z axis .
-
Yes it would be ideal to get the bed as level as you can with the adjustment screws and then use G29.
It is possible to run each Z motor on its own driver and perform tilt correction between the two, but that's not really needed if the bed is stable and the motors stay in sync as they are.
https://duet3d.dozuki.com/Wiki/Bed_levelling_using_multiple_independent_Z_motors
-
I started setting everything up but I have a small problem.I set the offsets for the Z Probe following the instructions on the guide.I have two problems I believe when I home the z axias it homes to the back right corner of the bed which is the max x and y axis points of the bed as I understand.I tried the G29 with the extruder and probe centered over the bed but when it tried to probe the first probe point the probe misses the bed and it tells me the probe was not triggered.
-
@siblues you have to adjust the grid setup in M557.
-
This is what is in my config.g
M557 X15:205 Y15:205 S20 ; Define mesh grid
I have a 220 x 220 bed.
-
And what is your probe offset in X and Y?
-
To get accurate probe results, the Duet needs to know how far the BLTouch is from the nozzle in X and Y. To measure this, place a piece of paper on the bed and use tape to hold it in place. Move the nozzle down until the it touches the paper and leaves a small imprint. Make note of the current X and Y coordinate. Use a marker to make the spot clearly visible. Now jog the print head in X and Y until the BLTouch pin is on the exact spot you marked. Make note of the new X and Y coordinates. The difference between the two will be your X Y offset in the G31 command.
-
X -20 y -45
I am also having some issues with my mk8 extruder
.I have a Bondtech BMG on the way and I am going to start looking around for some settings for that.i would like to be able to print some minor parts before installing the Bondtech though. I don't like taking on too many problems at once. -
Try this as your grid size
M557 X50:200 Y50:200 S20 ; Define mesh grid
Do you have your XY offset entered into your G31 command in config.g? In your post above with your config in it it's blank.
-
I edited the original post in this thread with the current files so you can see what is on the SD card at the moment.
-
Did you try with the grid size I posted above?
-
I am in the process of doing that as we speak.I just figured I would post the information first.
-
@siblues said in BlTouch not responding to commands?:
M201 X500 Y20 Z250 E250 ; Set accelerations (mm/s^2)
This isn't related to your BLTouch at all, but I just noticed that your Y axis acceleration is set quite low. I believe the configurator does this on purpose for i3 style machines because the bed can be quite heavy and a high acceleration can cause it to stall.
Once you've confirmed everything is working you can increase that value. Try matching the X value and if that seems like the movement is too much for the bed, decrease it a bit.
-
The mesh grid is working but it seems to be off center.The grid is starting about 1 inch from the left side of the bed and finishes about 1/2 inche from the right and it starts about a 1/2 inch from the front edge but is also an inch from the rear.
I get occasional z probe triggered before move during mesh grid compensation.