- 1
About This File
This is a remix for those using the Dragonburner ZeroClick cowl.
I have found that the side mount in the ZeroClick repository was short by around 5mm. (The original ZeroClick design added the mount to the side of the mini-afterburner cowl) I just modified the existing probe in the ZeroClick repository (with the CAD from the repository) and lengthened it by 5mm. Tested on a Voron0.2, and can confirm it is working perfectly.
These are my probe macros (modified from the ZeroClick repo) for the V0.2
[gcode_macro ATTACH_PROBE]
gcode:
{% set F = 4000 %}
SAVE_GCODE_STATE NAME=attach_probe_state
G90
G0 Z40
G0 Y110 F{F}
G0 X24 Y110 F{F}
G0 X3 Y110 F{F}
G0 Y110 F{F}
G0 X30 F{F}
G0 X60 Y60 F{F}
RESTORE_GCODE_STATE NAME=attach_probe_state
[gcode_macro DETACH_PROBE]
gcode:
{% set F = 4000 %}
SAVE_GCODE_STATE NAME=detach_probe_state
G90
G0 Z40
G0 Y110 F{F}
G0 X24 Y110 F{F}
G0 X3 Y110 F{F}
G0 X3 F{F}
G0 Y80 F{F} F{F}
G0 X60 Y60 F{F}
RESTORE_GCODE_STATE NAME=detach_probe_state