BLTouch working
-
might be worth adding that to the wiki, more pictures to follow is something people have been asking for
Done!
-
I finally got my extruder mounted on my Hevo. I'm trying to configure my BLTouch to work. I followed this thread and have been able to get the probe to deploy and stop once it triggers. Where I am having an issue is the offset. The nozzles are still too high. If I do an emergency stop I can then move the z up 1.5. So how do I tell the BL touch that this is where it should be. either this is "0" or have it offset.
I thought I would do it here in the code below, but thats not changing anything.
; EndstopsM574 X1 Y1 S1
M307 H3 A-1 C-1 D-1 ; use pin 3 on header for bltouch
M558 P5 X0 Y0 Z1 H5 F500 T2000 ; probe type and use probe for homing z
G31 X26.7 Y22.2 Z1.5 P25 ; Defines offset of sensor in relation to nozzle -
The Z parameter in the G31 command tells the firmware how high the nozzle is when the Z probe triggers. See https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe#Section_Calibrate_the_Z_probe_trigger_height.
-
The Z parameter in the G31 command tells the firmware how high the nozzle is when the Z probe triggers. See https://duet3d.dozuki.com/Wiki/Test_and_calibrate_the_Z_probe#Section_Calibrate_the_Z_probe_trigger_height.
step 8 says to repeat the above steps. When I do that, my height changes each time
7:08:53 AMG30 S-1
Stopped at height 1.834 mm
7:08:31 AMG30 S-1
Stopped at height 2.855 mm
7:08:05 AMG30 S-1
Stopped at height 2.812 mm
7:07:08 AMG30 S-1
Stopped at height 2.588 mm -
I had to lower my probing speeds and also introduced a recovery time. Still the probing heights changes range between -0.03 to 0.03 but my prints especially the first layer never caused me any issues.
From M558 P5 X0 Y0 Z1 H5 F500 T2000
I have M558 P9 X0 Y0 Z1 H5 F160 R0.250 T2000 ; P9 probe -
I've also heard that bltouch may be sensitive to the currents generated by the bed heater. So using the M558 B1 parameter supported in firmware 1.21RC4 may help.
-
I've also heard that bltouch may be sensitive to the currents generated by the bed heater. So using the M558 B1 parameter supported in firmware 1.21RC4 may help.
I'm actually starting to believe this. When using multi-tap with B1 A3 (and leaving S at the default 0.03), my printer probes exactly two times at each point. Without B1, I'd often get a third tap (and sometimes even a warning in the console log about inconsistent measurements.)
Of course, now that I've posted this, I'm sure my BLTouch will start becoming wildly inconsistent regardless of B1 settings or not.
-
I had to lower my probing speeds and also introduced a recovery time. Still the probing heights changes range between -0.03 to 0.03 but my prints especially the first layer never caused me any issues.
From M558 P5 X0 Y0 Z1 H5 F500 T2000
I have M558 P9 X0 Y0 Z1 H5 F160 R0.250 T2000 ; P9 probeNot sure if this was intended for me or not
-
I figured I could post here my question regarding the bltouch smart setup on my duet WiFi.
I am not using the duex, I followed instruction from the betrue blog, compared them with the ones here and can’t seem to get it working. I’ve cut the little logic strip to make it 3.3v. It’s setup on my #7 heater.
When I fire up my board the bltouch does its double pin down/up but after that I can’t get the probe to deploy or move using the M280 P7 S10 I1. The red light on the BlTouch is constantly on (can’t seem to find what that means on their instructions).Any ideas/suggestions?
-
I figured I could post here my question regarding the bltouch smart setup on my duet WiFi.
I am not using the duex, I followed instruction from the betrue blog, compared them with the ones here and can’t seem to get it working. I’ve cut the little logic strip to make it 3.3v. It’s setup on my #7 heater.
When I fire up my board the bltouch does its double pin down/up but after that I can’t get the probe to deploy or move using the M280 P7 S10 I1. The red light on the BlTouch is constantly on (can’t seem to find what that means on their instructions).Any ideas/suggestions?
Post your config.g and config-override.g please.
-
I figured I could post here my question regarding the bltouch smart setup on my duet WiFi.
I am not using the duex, I followed instruction from the betrue blog, compared them with the ones here and can’t seem to get it working. I’ve cut the little logic strip to make it 3.3v. It’s setup on my #7 heater.
When I fire up my board the bltouch does its double pin down/up but after that I can’t get the probe to deploy or move using the M280 P7 S10 I1. The red light on the BlTouch is constantly on (can’t seem to find what that means on their instructions).Any ideas/suggestions?
Post your config.g and config-override.g please.
Well i've switched it to heater 3 and it seems to be working fine. Perhaps is there a bug? The only thing i've changed is the P7 to P3 in my retract and deploy.
-
I figured I could post here my question regarding the bltouch smart setup on my duet WiFi.
I am not using the duex, I followed instruction from the betrue blog, compared them with the ones here and can’t seem to get it working. I’ve cut the little logic strip to make it 3.3v. It’s setup on my #7 heater.
When I fire up my board the bltouch does its double pin down/up but after that I can’t get the probe to deploy or move using the M280 P7 S10 I1. The red light on the BlTouch is constantly on (can’t seem to find what that means on their instructions).Any ideas/suggestions?
Post your config.g and config-override.g please.
Well i've switched it to heater 3 and it seems to be working fine. Perhaps is there a bug? The only thing i've changed is the P7 to P3 in my retract and deploy.
I'm guessing you unbound heater pin 3, but were originally using heater pin 7. Glad it's working.