How do I use the BL-Touch When homing Z-axis
-
Well as it says in the title
Tried to put M574 Z1 S2 , it did not work, it crached hard into the bed.Board: Duet 2 WiFi (2WiFi)
Firmware: RepRapFirmware for Duet 2 WiFi/Ethernet 3.4.1 (2022-06-01)
Duet WiFi Server Version: 1.26BL Touch config is:
;BL-Touch M307 H3 A-1 C-1 D-1 M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch M558 P9 C"^zprobe.in" H5 F120 T6000 ; set Z probe type to bltouch and the dive height + speeds G31 P500 X64 Y0 Z2.46 ; set Z probe trigger value, offset and trigger height
-
@tomasl use
G30
, notG1 H1 Z
-
@jay_s_uk
Well, that whas what RRF put in the config.g
So, How do I use the G30 code? -
@tomasl e.g.
G1 X100 Y100 G30
obviously changing the move location to the centre of the bed, taking into account to offset of the probe as the firmware won't
-
@jay_s_uk
Ok, so I,ll put this in the config.g, presumably at the end.
So it would readG1 X33,5 Y82,5 Z5 G30
If I do this via the console, Z stops att 2,43 (+5mm) I do assume that the X-axis is lifted 5 mm after the g30 command.
-
@tomasl not in config, in your homing files
-
@tomasl and if you want any further movements after the probe then you'll need to add those in
-
@jay_s_uk
Ok, I have put in homeall.g and homez.gG1 X33,5 Y82,5 F6000 G30
However Z-level is the same as the trigger height, is that correct?
-
@tomasl the height it'll set is the z offset that you've set in G31 in your config
-
@jay_s_uk Ok
-
-
@phaedrux Yes, I know all that, however my question was not answer in those documents.
-
@tomasl For example configurations, see https://docs.duet3d.com/User_manual/Machine_configuration/Configuration_cartesian#homing-z
Ian