Skip to content

Commit

Permalink
Small changes after merge (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
eaeaeaosn authored Feb 5, 2025
1 parent f4c0b51 commit d2d6b31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
### FRC 10541 IronPulse 2024 Competition Robot
### FRC 10541 IronPulse 2025 Competition Robot
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ElevatorIOInputs {
public double[] appliedVolts = new double[] {}; // {leader, follower}
public double[] statorCurrentAmps = new double[] {}; // {leader, follower}
public double[] supplyCurrentAmps = new double[] {}; // {leader, follower}
public double[] tempCelcius = new double[] {}; // {leader, follower}
public double[] tempCelsius = new double[] {}; // {leader, follower}
// public double acceleration = 0.0; may add later
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void updateInputs(ElevatorIOInputs inputs) {
inputs.appliedVolts = new double[] { voltageLeft.getValueAsDouble(), voltageRight.getValueAsDouble() };
inputs.statorCurrentAmps = new double[] { statorLeft.getValueAsDouble(), statorRight.getValueAsDouble() };
inputs.supplyCurrentAmps = new double[] { supplyLeft.getValueAsDouble(), supplyRight.getValueAsDouble() };
inputs.tempCelcius = new double[] { tempLeft.getValueAsDouble(), tempRight.getValueAsDouble() };
inputs.tempCelsius = new double[] { tempLeft.getValueAsDouble(), tempRight.getValueAsDouble() };

if (RobotConstants.TUNING) {
slot0Configs.kA = ELEVATOR_KA.get();
Expand Down

0 comments on commit d2d6b31

Please sign in to comment.