mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
Java-side bugfixes for RobotPoseEstimator and PhotonCamera (#685)
Closes #684 Closes #683 Closes #681 Closes #680 Closes #678
This commit is contained in:
@@ -280,7 +280,7 @@ public class PhotonCamera {
|
||||
prevHeartbeatValue = curHeartbeat;
|
||||
}
|
||||
|
||||
return ((now - prevHeartbeatChangeTime) > HEARBEAT_DEBOUNCE_SEC);
|
||||
return ((now - prevHeartbeatChangeTime) < HEARBEAT_DEBOUNCE_SEC);
|
||||
}
|
||||
|
||||
private void verifyVersion() {
|
||||
|
||||
Reference in New Issue
Block a user