Adaptive mesh still probes whole bed

Basic Information:

Printer Model: Homemade Delta
MCU / Printerboard: MKS Base 1.4
Host / SBC
klippy.log - attached

Fill out above information and in all cases attach your klippy.log file (use zip to compress it, if too big). Pasting your printer.cfg is not needed
Be sure to check our “Knowledge Base” Category first. Most relevant items, e.g. error messages, are covered there

Describe your issue:

I have adaptive mesh turned on however each time my prints start it probes the whole bed. I have the exclude objects on and I have the labels turned on in PursaSlicer. When printing multiple objects I can see the option to exclude an object in the Klipper UI therefore I assume this part is working ok. So I assume I have something wrong in my adaptive mesh setup?

Can anyone advise please.

Slippy log attached.
klippy-5.log (1.0 MB)

  1. Fix your START_PRINT macro:
[gcode_macro START_PRINT]
gcode = 
	{% set BED_TEMP = params.BED_TEMP|float %}
	{% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|float %}
	G28
	BED_MESH_CLEAR
	BED_MESH_CALIBRATE ADAPTIVE=1
	G90
	
	G28
	BED_MESH_PROFILE LOAD=default # <-------------------------------- DELETE
	G1 Z50 F4000
	M190 S{BED_TEMP}
	M109 S{EXTRUDER_TEMP}
	G1 X0 Y-144 Z0.3 F4500
	G3 X130 Y-75 I0J144 E25 F600
	G92 E0
	G1 E-2 F200
	M82
	G92 E0
  1. Check if you call BED_MESH_CALIBRATE elsewhere, e.g. in your slicer
  2. Check if enable_object_processing is needed in moonraker.conf
  3. Check if indeed the slicer is outputting the object information
  4. Attach a small sliced Gcode example with at least two objects if the above does not solve your issue

Thank you, this is working now. Looks like when I updated PrusaSlicer that the label objects settings changed.

Feel stupid for not checking it again but I was convinced that I had it all right.

Thanks again!

This thread can be closed now.

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