Turge08 / print_area_bed_mesh

Create bed mesh for print area only
209 stars 40 forks source link

If not using start_print macro, can that step be safely skipped? #10

Closed GhostlyCrowd closed 2 years ago

GhostlyCrowd commented 2 years ago

As the title asks, is it appropriate to skip that set if I do not use a start macro, I let the slicer handle all start gcode functions.

Turge08 commented 2 years ago

You can put the bed_mesh_calibrate command in the printer start gcode. Let me know if you need help with the syntax.

RedGuilhas commented 2 years ago

You can put the bed_mesh_calibrate command in the printer start gcode. Let me know if you need help with the syntax.

I need help with the syntax please.

Thanks

Turge08 commented 2 years ago

Try this:

PrusaSlicer/SuperSlicer:

BED_MESH_CALIBRATE PRINT_MIN={first_layer_print_min[0]},{first_layer_print_min[1]} PRINT_MAX={first_layer_print_max[0]},{first_layer_print_max[1]}

Cura:

BED_MESH_CALIBRATE PRINT_MIN=%MINX%,%MINY% PRINT_MAX=%MAXX%,%MAXY%
RedGuilhas commented 2 years ago

Thanks it worked!