Always send FPS to UI, remove target width/height box from UI

This commit is contained in:
Matt
2020-01-07 21:58:45 -08:00
parent d2874f1c73
commit eb5cb0bea0
2 changed files with 4 additions and 14 deletions

View File

@@ -220,10 +220,11 @@ public class VisionProcess {
point.put("fps", visionRunnable.fps);
point.put("targets", webTargets);
point.put("rawPoint", center);
WebSend.put("point", point);
SocketHandler.broadcastMessage(WebSend);
} else {
point.put("fps", visionRunnable.fps);
}
WebSend.put("point", point);
SocketHandler.broadcastMessage(WebSend);
}
}
}