Skip to content

Commit

Permalink
Ran spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
StewardHail3433 committed Jan 13, 2024
1 parent fad420a commit a1224e0
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/main/java/frc/robot/subsystems/Shooter.java
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
package frc.robot.subsystems;

public interface Shooter {

// Sets enable(true/false) to be used for the motors. on=true and off=false
public default void setEnabled(boolean isEnabled) {}

// Get enable(true/false). on=true and off=false
public default boolean getEnabled() {
return false;
}
// Sets the voltage of the motors.

// Sets the voltage of the motors.
public default void setVoltage(double voltage) {}
// gets the voltage of the motors.
public default double getVoltage(){

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


}

0 comments on commit a1224e0

Please sign in to comment.