jlas1 / Klicky-Probe

Microswitch probe with magnetic attachement, primarily aimed at CoreXY 3d printers
GNU General Public License v3.0
1.22k stars 279 forks source link

Probe_Lock will not working what so ever #260

Open DragonFlyer007 opened 2 months ago

DragonFlyer007 commented 2 months ago

Hi,

Been trying for way to long, but can not get the ATTATCH_PROBE_LOCK and DOCK_PROBE_UNLOCK in the start code to work. After it attached for the homeing i want it to stay attached untill finished the mesh, then dock.

I also behaves the same when using the "screw tilt adjust macro". Docks the probe in between homing and mesh. So enoying.

Thanks!

`[gcode_macro START_PRINT] gcode: {% set bedtemp = params.BED|int %} {% set hotendtemp = params.HOTEND|int %}

G90 ;Absolute Positioning BED_MESH_CLEAR

BED_MESH_CALIBRATE ;Run full bed mesh

M220 S100 ;Reset Feedrate M221 S100 ;Reset Flowrate M190 S{bedtemp} ATTACH_PROBE_LOCK G28 ; Home STATUS_HOMING STATUS_MESHING {% if printer['output_pin lock_BED_MESH_CALIBRATE'].value|int == 0 %} BED_MESH_CALIBRATE PROFILE=default BED_MESH_PROFILE SAVE=default {% else %} BED_MESH_PROFILE LOAD=default {% endif %}

DOCK_PROBE_UNLOCK G1 X0 Y0 Z5 F4000 STATUS_HEATING M109 S{hotendtemp} STATUS_PRINTING`