jschuh / klipper-macros

A collection of useful macros for the Klipper 3D printer firmware
GNU General Public License v3.0
972 stars 172 forks source link

Load existing bed mesh instead of probing #58

Closed raechten closed 1 year ago

raechten commented 1 year ago

Apart from overriding PRINT_START, is there a way to load an existing bed mesh instead of probing the bed before each print? Especially with shorter prints, this greatly reduces the overall time

jschuh commented 1 year ago

Overriding PRINT_START is quite easy; the docs have a template you can copy. You could also duplicate the old Klipper behavior by loading the profile in the gcode for your _km_options, which runs at Klipper startup. Or you could just load it in _km_options variable_start_gcode_before_print before each print.

jschuh commented 1 year ago

There's a suggestion in the Ideas discussion of tying this to the bed sheet selection, which I'm thinking about doing.