Skip to content

Commit

Permalink
add a space
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan-underwood committed Jan 27, 2024
1 parent b2bbb47 commit 62780f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/intake/Intake.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public void periodic() {
}

public void setIntakeMotor(double percentage) {
Logger.recordOutput("/Intake/IntakePercentage", percentage);
Logger.recordOutput("/Intake/Intake Percentage", percentage);
io.setIntakeMotorPercentage(percentage);
}

public void setIndexerMotor(double percentage) {
Logger.recordOutput("/Intake/IndexerPercentage", percentage);
Logger.recordOutput("/Intake/Indexer Percentage", percentage);
io.setIndexerMotorPercentage(percentage);
}

Expand Down

0 comments on commit 62780f8

Please sign in to comment.