mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-24 01:31:44 +00:00
Limit PS3Eye to 100FPS (#218)
This helps prevent running in to USB bandwidth issues with multiple PS3Eyes.
This commit is contained in:
@@ -28,6 +28,7 @@ public class QuirkyCameraTest {
|
||||
public void ps3EyeTest() {
|
||||
HashMap<CameraQuirk, Boolean> ps3EyeQuirks = new HashMap<>();
|
||||
ps3EyeQuirks.put(CameraQuirk.Gain, true);
|
||||
ps3EyeQuirks.put(CameraQuirk.FPSCap100, true);
|
||||
for (var q : CameraQuirk.values()) {
|
||||
ps3EyeQuirks.putIfAbsent(q, false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user