Skip to content

Commit

Permalink
renamed 'enable' to 'noteOut'
Browse files Browse the repository at this point in the history
  • Loading branch information
StewardHail3433 committed Jan 13, 2024
1 parent 1d214b0 commit b85507f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/frc/robot/subsystems/Shooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

public interface Shooter {
// Disable the shooter
public default void disable(double voltage) {}
public default void disable() {}

// Enable the shooter.
public default void enable(double voltage) {}
// Enable the shooter with the .
public default void noteOut(double voltage) {}

// Set the voltage of the motors.
public default double setVoltage () {
public default double setVoltage() {
return 0;
}
}

0 comments on commit b85507f

Please sign in to comment.