Turge08 / print_area_bed_mesh

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

Invalid Pattern for some prints #28

Open bjoern79de opened 2 years ago

bjoern79de commented 2 years ago

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?

RURon commented 2 years ago

...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 %}```
chopdi commented 2 years ago

And you solved it?