This repository has been archived by the owner on Jan 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Half Hollow Hills Comp Modifications, new april tag Limelight inital …
…integration, swerve tuning
- Loading branch information
1 parent
98456c5
commit 7619fc2
Showing
193 changed files
with
5,804 additions
and
3,852 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.68 KB
bin/default/frc/robot/subsystems/climber/ClimberIOInputsAutoLogged.class
Binary file not shown.
Binary file added
BIN
+2.2 KB
bin/default/frc/robot/subsystems/poseLimelight/PoseLimelightIOInputsAutoLogged.class
Binary file not shown.
33 changes: 33 additions & 0 deletions
33
...generated-sources/annotations/frc/robot/subsystems/climber/ClimberIOInputsAutoLogged.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package frc.robot.subsystems.climber; | ||
|
||
import java.lang.Cloneable; | ||
import java.lang.Override; | ||
import org.littletonrobotics.junction.LogTable; | ||
import org.littletonrobotics.junction.inputs.LoggableInputs; | ||
|
||
public class ClimberIOInputsAutoLogged extends ClimberIO.ClimberIOInputs implements LoggableInputs, Cloneable { | ||
@Override | ||
public void toLog(LogTable table) { | ||
table.put("ClimberHeightMeters", climberHeightMeters); | ||
table.put("VoltageOut", voltageOut); | ||
table.put("ReachedSetpoint", reachedSetpoint); | ||
table.put("GoalPositionMeters", goalPositionMeters); | ||
} | ||
|
||
@Override | ||
public void fromLog(LogTable table) { | ||
climberHeightMeters = table.get("ClimberHeightMeters", climberHeightMeters); | ||
voltageOut = table.get("VoltageOut", voltageOut); | ||
reachedSetpoint = table.get("ReachedSetpoint", reachedSetpoint); | ||
goalPositionMeters = table.get("GoalPositionMeters", goalPositionMeters); | ||
} | ||
|
||
public ClimberIOInputsAutoLogged clone() { | ||
ClimberIOInputsAutoLogged copy = new ClimberIOInputsAutoLogged(); | ||
copy.climberHeightMeters = this.climberHeightMeters; | ||
copy.voltageOut = this.voltageOut; | ||
copy.reachedSetpoint = this.reachedSetpoint; | ||
copy.goalPositionMeters = this.goalPositionMeters; | ||
return copy; | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...urces/annotations/frc/robot/subsystems/poseLimelight/PoseLimelightIOInputsAutoLogged.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package frc.robot.subsystems.poseLimelight; | ||
|
||
import java.lang.Cloneable; | ||
import java.lang.Override; | ||
import org.littletonrobotics.junction.LogTable; | ||
import org.littletonrobotics.junction.inputs.LoggableInputs; | ||
|
||
public class PoseLimelightIOInputsAutoLogged extends PoseLimelightIO.PoseLimelightIOInputs implements LoggableInputs, Cloneable { | ||
@Override | ||
public void toLog(LogTable table) { | ||
table.put("EstimatedPose", estimatedPose); | ||
table.put("TimestampSeconds", timestampSeconds); | ||
table.put("HasValidTargets", hasValidTargets); | ||
table.put("PrimaryTagId", primaryTagId); | ||
table.put("Tx", tx); | ||
table.put("Ty", ty); | ||
} | ||
|
||
@Override | ||
public void fromLog(LogTable table) { | ||
estimatedPose = table.get("EstimatedPose", estimatedPose); | ||
timestampSeconds = table.get("TimestampSeconds", timestampSeconds); | ||
hasValidTargets = table.get("HasValidTargets", hasValidTargets); | ||
primaryTagId = table.get("PrimaryTagId", primaryTagId); | ||
tx = table.get("Tx", tx); | ||
ty = table.get("Ty", ty); | ||
} | ||
|
||
public PoseLimelightIOInputsAutoLogged clone() { | ||
PoseLimelightIOInputsAutoLogged copy = new PoseLimelightIOInputsAutoLogged(); | ||
copy.estimatedPose = this.estimatedPose; | ||
copy.timestampSeconds = this.timestampSeconds; | ||
copy.hasValidTargets = this.hasValidTargets; | ||
copy.primaryTagId = this.primaryTagId; | ||
copy.tx = this.tx; | ||
copy.ty = this.ty; | ||
return copy; | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+11 Bytes
(100%)
bin/main/frc/robot/commands/autoAligment/DriveToPose.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+1.28 KB
(150%)
bin/main/frc/robot/commands/drivetrain/AbsoluteFieldDrive.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+653 Bytes
bin/main/frc/robot/subsystems/climber/ClimberIO$ClimberIOInputs.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+467 Bytes
(110%)
bin/main/frc/robot/subsystems/drivetrain/swerve/ModuleIOSim.class
Binary file not shown.
Binary file modified
BIN
+61 Bytes
(110%)
bin/main/frc/robot/subsystems/drivetrain/swerve/SwerveDrive$1.class
Binary file not shown.
Binary file modified
BIN
-2.67 KB
(86%)
bin/main/frc/robot/subsystems/drivetrain/swerve/SwerveDrive.class
Binary file not shown.
Binary file modified
BIN
-162 Bytes
(98%)
bin/main/frc/robot/subsystems/drivetrain/vision/NoteDetector.class
Binary file not shown.
Binary file modified
BIN
+266 Bytes
(120%)
bin/main/frc/robot/subsystems/drivetrain/vision/NoteDetectorIOReal.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+945 Bytes
bin/main/frc/robot/subsystems/poseLimelight/PoseLimelightIO$PoseLimelightIOInputs.class
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+887 Bytes
bin/main/frc/robot/subsystems/poseLimelight/PoseLimelightIOReal.class
Binary file not shown.
Binary file added
BIN
+788 Bytes
bin/main/frc/robot/subsystems/poseLimelight/PoseLimelightIOSim.class
Binary file not shown.
Binary file modified
BIN
+480 Bytes
(130%)
build/classes/java/main/frc/robot/Constants$DrivetrainConstants.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/Constants$FieldConstants.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/Constants$IntakeConstants.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/Constants$VisionConstants.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/AutoCommand$1.class
Binary file not shown.
Binary file modified
BIN
+453 Bytes
(110%)
build/classes/java/main/frc/robot/commands/AutoCommand.class
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/autoAligment/DriveToPose.class
Binary file not shown.
Binary file modified
BIN
-35 Bytes
(99%)
build/classes/java/main/frc/robot/commands/autoAligment/NotePresent.class
Binary file not shown.
Binary file modified
BIN
-24 Bytes
(99%)
build/classes/java/main/frc/robot/commands/compositions/CancelIntakeNote.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/compositions/FeedAndHoldNote.class
Binary file not shown.
Binary file modified
BIN
+23 Bytes
(100%)
build/classes/java/main/frc/robot/commands/compositions/IntakeNote.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/compositions/IntakeNoteAuto.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/compositions/ShootNote.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/compositions/ShooterTest.class
Binary file not shown.
Binary file modified
BIN
+803 Bytes
(150%)
build/classes/java/main/frc/robot/commands/drivetrain/AbsoluteFieldDrive.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/drivetrain/DriveToNote$1.class
Binary file not shown.
Binary file modified
BIN
+561 Bytes
(110%)
build/classes/java/main/frc/robot/commands/drivetrain/DriveToNote.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/InIntake.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/IntakeToggle.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/OutIntake.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/RollIntakeEject.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/RollIntakeIn.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/intake/RollIntakeInSlow.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/shooterComp/InShooter.class
Binary file not shown.
Binary file added
BIN
+860 Bytes
build/classes/java/main/frc/robot/commands/shooterComp/ShooterAmp.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/shooterComp/ShooterHold.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/commands/shooterComp/ShooterToggle.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/lib/input/XboxController.class
Binary file not shown.
Binary file modified
BIN
+569 Bytes
(150%)
build/classes/java/main/frc/robot/lib/util/RebelUtil.class
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/DriveFFController.class
Binary file not shown.
Binary file modified
BIN
+463 Bytes
(110%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/ModuleIOSIM.class
Binary file not shown.
Binary file modified
BIN
+632 Bytes
(110%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/ModuleIOTalon.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/SwerveDrive$1.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/SwerveDrive$2.class
Binary file not shown.
Binary file modified
BIN
+1.35 KB
(110%)
build/classes/java/main/frc/robot/subsystems/drivetrain/swerve/SwerveDrive.class
Binary file not shown.
Binary file modified
BIN
+162 Bytes
(100%)
build/classes/java/main/frc/robot/subsystems/drivetrain/vision/NoteDetector.class
Binary file not shown.
Binary file modified
BIN
+253 Bytes
(110%)
build/classes/java/main/frc/robot/subsystems/drivetrain/vision/NoteDetectorIOReal.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.