Skip to content

Commit

Permalink
comment out ll feed since it doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
willitcode committed Mar 27, 2024
1 parent 3f245ec commit 164700e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/frc/robot/subsystems/Limelight.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import edu.wpi.first.networktables.DoubleTopic;
import edu.wpi.first.networktables.GenericEntry;
import edu.wpi.first.networktables.NetworkTableInstance;
import edu.wpi.first.wpilibj.shuffleboard.SendableCameraWrapper;
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
import edu.wpi.first.wpilibj2.command.SubsystemBase;

Expand Down Expand Up @@ -65,9 +64,9 @@ public Limelight(String name) {
.getDoubleArrayTopic(fmtPath("botpose"))
.subscribe(defaultBotpos);

Shuffleboard.getTab("Driver")
.add(SendableCameraWrapper.wrap(name, "http://" + name + ".local:5800/stream.mjpg"))
.withSize(4, 4);
/* Shuffleboard.getTab("Driver")
.add(SendableCameraWrapper.wrap(name, "http://" + name + ".local:5800/stream.mjpg"))
.withSize(4, 4); */

/* TODO: CONSTANTS */
limelightHasTarget = Shuffleboard.getTab("Driver").add(name + "has target", false).getEntry();
Expand Down

0 comments on commit 164700e

Please sign in to comment.