🐛 Fix probe temp compensation maths (#23004)

This commit is contained in:
tombrazier
2021-10-22 21:56:05 +01:00
committed by Scott Lahteine
parent e852732ea8
commit 5b478cd5f6
3 changed files with 41 additions and 34 deletions

View File

@ -121,7 +121,7 @@ void GcodeSuite::G76() {
temp_comp.prepare_new_calibration(measured_z);
else
temp_comp.push_back_new_measurement(sid, measured_z);
targ += cali_info_init[sid].temp_res;
targ += cali_info_init[sid].temp_resolution;
}
return measured_z;
};