Merge branch 'i2c_detect' into dev_environment

This commit is contained in:
csawatzky 2025-07-28 15:25:44 -06:00
commit d63ff51a42
3 changed files with 20 additions and 5 deletions

View file

@ -261,7 +261,7 @@ function unitConversion(
newVals.forEach((val, i) => {
val.values.forEach((v, j) => {
//convert m/s to ft/m by multiplying by 196.9
newVals[i].values[j] = v * 196.9
newVals[i].values[j] = Math.round(v * 196.9)
});
});
}