You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Running klipper on my Voron-wannabe.
I have the klicky variables, macros, bed mesh etc files uploaded.
Thanks!
`[gcode_macro START_PRINT]
gcode:
{% set bedtemp = params.BED|int %}
{% set hotendtemp = params.HOTEND|int %}
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`
The text was updated successfully, but these errors were encountered: