Screws_tilt_adjust optional after probe move?

Would love the ability to specify an end position for the toolhead after probing the bed screw points.

Reasoning for this is to effectively present the bed to the user for easier adjustment of the screws between probing.

Right now I have to hit the Mainsail retry button and quickly execute a G1 command in the console to queue up a bed move.

may not be of help, but there is a great write up here…
https://www.printsleo3d.com/screwtilt

meanwhile, what I did was added a macro to do it for me. And just had it name it something else.

[gcode_macro SCREWS_TILT_CALCULATE]
gcode:
    rename_existing: _SCREWS_TILT_CALCULATE
    G28
    G1 Y100 X100 F7800
    _SCREWS_TILT_CALCULATE
    G28
#description: G-Code macro to home, move to center of bed, and run SCREWS_TILT_CALCULATE.1 and home again
# End Gcode

By renaming it with an _ hides it from mainsail/fluidd so both dont show up.

1 Like

IME, the renamed macro trick only works for the first issuance. Any retry from the UI doesn’t call the full macro sequence.

This would seem strange. Each SCREWS_TILT_CALCULATE run is a fully self-contained process and as such this approach as shown by @DaVinci10 should work.

It’s not, but I’ve since moved away from the need for this by using a nozzle probe.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.