Skip to content

Instantly share code, notes, and snippets.

@BrendaIT
Forked from ChipCE/readme.md
Created May 1, 2022 01:30
Show Gist options
  • Select an option

  • Save BrendaIT/8c57c03ef350a2f6a7903be091d68d5c to your computer and use it in GitHub Desktop.

Select an option

Save BrendaIT/8c57c03ef350a2f6a7903be091d68d5c to your computer and use it in GitHub Desktop.
Klipper bed mesh on print area only macro install guide

Klipper mesh on print area only install guide

variable_parameter_AREA_START_X : 0
variable_parameter_AREA_START_Y : 0
variable_parameter_AREA_END_X : 150
variable_parameter_AREA_END_Y : 180
  • (3) Add the following line into you START_MACRO print. The position should be after G28 and Z_TILT_ADJUST/QUAD_GANTRY_LEVEL BED_MESH_PRINT_AREA AREA_START_X={params.AREA_START_X|float} AREA_START_Y={params.AREA_START_Y|float} AREA_END_X={params.AREA_END_X|float} AREA_END_Y={params.AREA_END_Y|float}
  • (4) Go to prusa slicer config, printer setting -> Custom G-code -> Start G-code and change the start gcode to START_PRINT T_BED=[first_layer_bed_temperature] T_EXTRUDER=[first_layer_temperature] AREA_START_X={first_layer_print_min[0]} AREA_START_Y={first_layer_print_min[1]} AREA_END_X={first_layer_print_max[0]} AREA_END_Y={first_layer_print_max[1]}
  • (5) You might need to adjust your START_PRINT macro if it not in the same style as mine. This is an example example macro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment