-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6953095
commit 75d871a
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package frc.robot.subsystems; | ||
|
||
public interface Intake { | ||
//Sets the Intake to a mode(in/out) | ||
public default void setMode(String direction) {} | ||
|
||
//Gets the Intake mode (in/out) | ||
public default String getMode() {return null;} | ||
|
||
//Sets enable(true/false) to be used for the motors. on=true and off=false | ||
public default void setEnabled(boolean isEnabled) {} | ||
|
||
//Gets enable or disable Intake value. | ||
public default boolean getEnabled() {return false;} | ||
|
||
} |