Skip to content

Commit

Permalink
remove sim vision and other unneeded methods
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas01b0x committed Jan 17, 2025
1 parent 3f12363 commit 29c47e5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,7 @@
import edu.wpi.first.wpilibj2.command.SubsystemBase;

public abstract class AprilTagVision extends SubsystemBase {

private static final AprilTagVision instance;

static {
if (Robot.isReal()) {
instance = new LimelightVision();
}
else {
instance = new SimVision();
}
}

public static AprilTagVision getInstance() {
return instance;
}

public abstract void setTagWhitelist(int... ids);

public abstract void setCameraEnabled(String name, boolean enabled);

public abstract void disable();
Expand Down
27 changes: 0 additions & 27 deletions src/main/java/com/stuypulse/robot/subsystems/vision/SimVision.java

This file was deleted.

0 comments on commit 29c47e5

Please sign in to comment.