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

Mesh bed saves as "auto" instead of "default" #108

Closed
THEGxHOxST opened this issue Mar 27, 2024 · 1 comment
Closed

Mesh bed saves as "auto" instead of "default" #108

THEGxHOxST opened this issue Mar 27, 2024 · 1 comment
Labels
not-a-bug The feature works as desigend / intended

Comments

@THEGxHOxST
Copy link

Mesh bed saves as "auto" instead of "default" which doesn't allow MainSail to load it by default.
Fixed by changes in Macros.cfg

From
[gcode_macro AUTO_BED_LEVEL]
gcode:
{% set bed_temp = params.BED_TEMP|default(60)|float %}
{% set extruder_temp = params.EXTRUDER_TEMP|default(200)|float %}
{% set profile = params.PROFILE|default("auto") %}

To
[gcode_macro AUTO_BED_LEVEL]
gcode:
{% set bed_temp = params.BED_TEMP|default(60)|float %}
{% set extruder_temp = params.EXTRUDER_TEMP|default(200)|float %}
{% set profile = params.PROFILE|default("default") %}

I also recommend changing the probe z offset to -0.35

@KaruroChori KaruroChori added bug Something isn't working enhancement New feature or request labels Mar 27, 2024
@xblax
Copy link
Owner

xblax commented Mar 27, 2024

That's not really a bug but intended behavior. In general, a created Mesh should not be loaded automatically just because someone presses the Save Config button (maybe even to save something else) - because then loading the mesh automatically is more like an unintended side effect.

Klipper did even remove that behavior from from 0.12. Bed Mesh depends on Bed Temp, Nozzle, Print Surface etc - it's better to not make any assumptions on that, therefore all meshes are created by default as 'auto'. If and when a saved mesh should be loaded automatically is up to the user to configure.

The topic can also be further discusses in the discussion section, i.e. here: #106

Regarding the z-Offset: This issue here is still open for finding the optimal value: #73
But in my experience -0.35 is way too much. We have -0.25 as a default and I started to prints with -0.15 lately, because that gives a bit nicer and more dense first layers.

@xblax xblax closed this as completed Mar 27, 2024
@xblax xblax added not-a-bug The feature works as desigend / intended and removed bug Something isn't working enhancement New feature or request labels Mar 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
not-a-bug The feature works as desigend / intended
Projects
None yet
Development

No branches or pull requests

3 participants