You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some prints I get the following error message:
bed_mesh: invalid probe_count option when using bicubic interpolation. Combination of 3 points on one axis with more than 6 on another is not permitted. Configured Probe Count: 7, 3
Any hint for globally working base settings for the mesh?
The text was updated successfully, but these errors were encountered:
...today I had the same problem..hmm - looking at the bed_mesh.py of Klipper I added this block to the if blocks at around line 90 of the script:
{% if probe_count_x<=3 and probe_count_y>6 %}
{% set probe_count_y = 6 %}
{% endif %}
{% if probe_count_y<=3 and probe_count_x>6 %}
{% set probe_count_x = 6 %}
{% endif %}```
For some prints I get the following error message:
bed_mesh: invalid probe_count option when using bicubic interpolation. Combination of 3 points on one axis with more than 6 on another is not permitted. Configured Probe Count: 7, 3
Any hint for globally working base settings for the mesh?
The text was updated successfully, but these errors were encountered: