Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan1522 authored Oct 28, 2024
1 parent 4c386b8 commit bc73b16
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ModuleInputs {
public double steerMotorAppliedVolts = 0.0;
public double steerMotorCurrentAmps = 0.0;

public double[] odometryDriveWheelRevolutions = new double[];;
public double[] odometryDriveWheelRevolutions = new double[] {};

public double driveVelocity = 0.0;
public double driveAppliedVolts = 0.0;
Expand All @@ -24,8 +24,8 @@ class ModuleInputs {
public double turnVelocityRadPerSec = 0.0;
public double turnAppliedVolts = 0.0;
public double turnCurrentAmps = 0.0;
public double[] odometryTimestamps = new double[];;
public double[] odometryDrivePositionsRad = new double[];;
public double[] odometryTimestamps = new double[] {};
public double[] odometryDrivePositionsRad = new double[] {};
// public Rotation2d[] odometryTurnPositions = new Rotation2d[];;
public double driveWheelFinalVelocityPerSec = 0.0;
public double turnMotorAppliedVolts = 0.0;
Expand Down

0 comments on commit bc73b16

Please sign in to comment.