Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse committed Jan 17, 2025
1 parent 16bfcd0 commit 0e8b4ca
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions wpilibj/src/main/java/edu/wpi/first/wpilibj/AnalogGyro.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ private void initGyro() {
* are in progress, this is typically done when the robot is first turned on while it's sitting at
* rest before the competition starts.
*/
public void calibrate() {
}
public void calibrate() {}

/**
* Return the heading of the robot as a {@link edu.wpi.first.math.geometry.Rotation2d}.
Expand Down Expand Up @@ -130,8 +129,7 @@ public AnalogGyro(AnalogInput channel, int center, double offset) {
* <p>Resets the gyro to a heading of zero. This can be used if there is significant drift in the
* gyro, and it needs to be recalibrated after it has been running.
*/
public void reset() {
}
public void reset() {}

/** Delete (free) the accumulator and the analog components used for the gyro. */
@Override
Expand Down Expand Up @@ -200,8 +198,7 @@ public int getCenter() {
*
* @param voltsPerDegreePerSecond The sensitivity in Volts/degree/second.
*/
public void setSensitivity(double voltsPerDegreePerSecond) {
}
public void setSensitivity(double voltsPerDegreePerSecond) {}

/**
* Set the size of the neutral zone. Any voltage from the gyro less than this amount from the
Expand All @@ -210,8 +207,7 @@ public void setSensitivity(double voltsPerDegreePerSecond) {
*
* @param volts The size of the deadband in volts
*/
public void setDeadband(double volts) {
}
public void setDeadband(double volts) {}

/**
* Gets the analog input for the gyro.
Expand Down

0 comments on commit 0e8b4ca

Please sign in to comment.