Add decibel control.

This commit is contained in:
cnlohr
2024-10-09 03:03:32 -07:00
parent 147fdc514d
commit c1bdfe0acf
2 changed files with 67 additions and 91 deletions
+1 -1
View File
@@ -330,7 +330,7 @@ async function sendLoop()
document.getElementById( "StatusPerf" ).innerHTML =
(kBsecAvg).toFixed(2) + " kBytes/s<br>" +
(xActionSecAvg).toFixed(2) + "transactions/sec<br>" +
"Count: " + goodCount + " / " + badCount;
"Count: " + goodCount + " / " + badCount + "<br>Inten: " + ((Math.log( lastIntensity * lastIntensity )/Math.log(10)) * 10-130).toFixed(2) + "db";
lastTime = thisTime;
}
else if( frameNo % updateStatsPerfPer == 2 )