Calculate all frames
This commit is contained in:
parent
b32f6ad476
commit
78fb25b5a1
|
@ -119,7 +119,7 @@ void loop() {
|
||||||
total = millis() - start;
|
total = millis() - start;
|
||||||
Serial.println(total);
|
Serial.println(total);
|
||||||
rpm = calculateRPM(total) * (float) (rotations + 1);
|
rpm = calculateRPM(total) * (float) (rotations + 1);
|
||||||
fps = calculateFPS(total, 18);
|
fps = calculateFPS(total, frames);
|
||||||
Serial.print("RPM: ");
|
Serial.print("RPM: ");
|
||||||
Serial.println(rpm);
|
Serial.println(rpm);
|
||||||
Serial.print("FPS: ");
|
Serial.print("FPS: ");
|
||||||
|
|
Loading…
Reference in New Issue