Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid Pattern for some prints #28

Open
bjoern79de opened this issue Mar 6, 2022 · 2 comments
Open

Invalid Pattern for some prints #28

bjoern79de opened this issue Mar 6, 2022 · 2 comments

Comments

@bjoern79de
Copy link

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
Copy link

RURon commented Jun 1, 2022

...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
Copy link

chopdi commented Jun 17, 2022

And you solved it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants