resetFps method

void resetFps()

Resets this video feed to its initial state as if the dashboard has just started up

This will FPS and received frame count to 0, as well as set the status to disconnected

Implementation

void resetFps() {
  framesPerSecond.value = 0;
  _receivedFrames = 0;
}