Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
Half Hollow Hills Comp Modifications, new april tag Limelight inital …
Browse files Browse the repository at this point in the history
…integration, swerve tuning
  • Loading branch information
EtherexStudios committed Nov 9, 2024
1 parent 98456c5 commit 7619fc2
Show file tree
Hide file tree
Showing 193 changed files with 5,804 additions and 3,852 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified .gradle/8.5/checksums/checksums.lock
Binary file not shown.
Binary file modified .gradle/8.5/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified .gradle/8.5/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/8.5/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified .gradle/file-system.probe
Binary file not shown.
Binary file not shown.
Binary file not shown.
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;
}
}
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 modified bin/main/frc/robot/Constants$Auton.class
Binary file not shown.
Binary file modified bin/main/frc/robot/Constants$VisionConstants.class
Binary file not shown.
Binary file modified bin/main/frc/robot/Robot.class
Binary file not shown.
Binary file modified bin/main/frc/robot/RobotContainer$1.class
Binary file not shown.
Binary file modified bin/main/frc/robot/RobotContainer$2.class
Binary file not shown.
Binary file modified bin/main/frc/robot/RobotContainer$3.class
Binary file not shown.
Binary file modified bin/main/frc/robot/RobotContainer$4.class
Binary file not shown.
Binary file modified bin/main/frc/robot/RobotContainer.class
Binary file not shown.
Binary file modified bin/main/frc/robot/commands/AutoRunner.class
Binary file not shown.
Binary file modified 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/main/frc/robot/commands/drivetrain/AbsoluteFieldDrive.class
Binary file not shown.
Binary file modified bin/main/frc/robot/commands/drivetrain/DriveToNote.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 modified bin/main/frc/robot/subsystems/drivetrain/swerve/ModuleIOSim.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified bin/main/frc/robot/subsystems/drivetrain/vision/NoteDetector.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 modified build/classes/java/main/frc/robot/Constants$FieldConstants.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/Constants.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer$1.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer$2.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer$3.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer$4.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer$5.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/RobotContainer.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/commands/AutoCommand$1.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/commands/AutoCommand.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/commands/Autos.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 modified build/classes/java/main/frc/robot/commands/intake/InIntake.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 modified build/classes/java/main/frc/robot/lib/input/XboxController.class
Binary file not shown.
Binary file modified build/classes/java/main/frc/robot/lib/util/RebelUtil.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 modified build/libs/2024-Crescendo-Offseason.jar
Binary file not shown.
Binary file modified build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
Binary file modified ctre_sim/CANCoder vers. H - 010 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/CANCoder vers. H - 011 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/CANCoder vers. H - 08 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/CANCoder vers. H - 09 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 00 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 01 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 017 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 018 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 02 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 03 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 04 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 05 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 06 - 0 - ext.dat
Binary file not shown.
Binary file modified ctre_sim/Talon FX vers. C - 07 - 0 - ext.dat
Binary file not shown.
Loading

0 comments on commit 7619fc2

Please sign in to comment.