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

Disable bed heater during Z-Probe move #6433

Closed
thijsk opened this issue Apr 23, 2017 · 3 comments
Closed

Disable bed heater during Z-Probe move #6433

thijsk opened this issue Apr 23, 2017 · 3 comments

Comments

@thijsk
Copy link

thijsk commented Apr 23, 2017

I was wondering if the magnetic field caused by the heated bed being powered on could influence the accuracy of my Z-probe (a hall effect sensor). So I modified the run_z_probe() function to disable the bed right at the start and turn it back on when the probe is completed.

This way the bed will turn be off during each probe with (bi)linear auto bed leveling turned on, while the temperature does not drop significantly during the whole process.

It seems that the autolevel on my machine is just a bit more acurate, but I haven't actually measured this yet.

Any thoughts on this?
Would it be usefull to submit a pull request for this?

#if ENABLED(DISABLE_HEATING_DURING_PROBE)
	float temp = thermalManager.degTargetBed();
	thermalManager.setTargetBed(0);
#endif 
#if ENABLED(DISABLE_HEATING_DURING_PROBE)
	thermalManager.setTargetBed(temp);
#endif
@thijsk
Copy link
Author

thijsk commented Apr 23, 2017

By browsing other issues I just found a similar discussion here: #6394

@Grogyan
Copy link
Contributor

Grogyan commented Apr 23, 2017 via email

@github-actions
Copy link

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@github-actions github-actions bot locked and limited conversation to collaborators Mar 23, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants