Skip to content

Commit

Permalink
Delete robot relative pose value from Limelight.java
Browse files Browse the repository at this point in the history
  • Loading branch information
simonstoryparker committed Nov 26, 2024
1 parent db27f63 commit e175784
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/frc/robot/vision/Limelight.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
public class Limelight {
private final String limelightTableName;
public final String name;
public final Pose3d robotRelativePose;
private CameraDataset interpolationData;
private CameraStatus state = CameraStatus.ONLINE_NO_TAGS;
private double limelightHeartbeat = -1;
Expand All @@ -21,7 +20,6 @@ public class Limelight {
public Limelight(String name, Pose3d robotRelativePose, CameraDataset interpolationData) {
limelightTableName = "limelight-" + name;
this.name = name;
this.robotRelativePose = robotRelativePose;
this.interpolationData = interpolationData;
limelightTimer.start();
}
Expand Down

0 comments on commit e175784

Please sign in to comment.