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
Finer control over the Z-Offset is needed. Increasing the resolution from 0.05 to 0.01 would be helpful. I noticed that this has already been done in the screen firmware for the Print->Tuning screen.
Steps to Reproduce
Additional Information
File touch_lcd.cpp needs to be changed in 6 places between lines 978 and 995, reducing 0.05 to 0.01. See attached file touch_lcd.zip
Edit: There is a problem with float precision and a single press up or down does not always result in a displayed 0.01mm difference. This can be compensated for by:
The text was updated successfully, but these errors were encountered:
ritchiedc
changed the title
Reduce Z-Offset Resolution in the Level Screen to 0.01
Increase Z-Offset Resolution in the Level Screen to 0.01
Oct 11, 2020
Description
Finer control over the Z-Offset is needed. Increasing the resolution from 0.05 to 0.01 would be helpful. I noticed that this has already been done in the screen firmware for the Print->Tuning screen.
Steps to Reproduce
Additional Information
File touch_lcd.cpp needs to be changed in 6 places between lines 978 and 995, reducing 0.05 to 0.01. See attached file
touch_lcd.zip
Edit: There is a problem with float precision and a single press up or down does not always result in a displayed 0.01mm difference. This can be compensated for by:
probe.offset.z = roundf(probe.offset.z*100.0 + 1.0)/100.0; // increment
and
probe.offset.z = roundf(probe.offset.z*100.0 - 1.0)/100.0; // decrement
The text was updated successfully, but these errors were encountered: