-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Coconuts2486-FRC/FRC2020
- Loading branch information
Showing
2 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
22 changes: 19 additions & 3 deletions
22
FRC2020/src/main/java/frc/robot/Autonomous/AutoMissions.java
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 |
---|---|---|
@@ -1,14 +1,30 @@ | ||
package frc.robot.Autonomous; | ||
|
||
public class AutoMissions{ | ||
import frc.robot.Map; | ||
|
||
public static void TrenchAuto(){ | ||
public class AutoMissions { | ||
|
||
public static String CurrentAuto = "None Selected"; | ||
public static double SelectedAuto = 0; | ||
//SmartDashboard.putString("Auto Mode", AutoMissions.CurrentAuto); | ||
|
||
public static void NoAutoSelected(){ | ||
CurrentAuto = "None Selected"; | ||
Map.driveTrain.lf.set(0); | ||
Map.driveTrain.lr.set(0); | ||
Map.driveTrain.rf.set(0); | ||
Map.driveTrain.rr.set(0); | ||
} | ||
|
||
public static void TrenchRun(){ | ||
CurrentAuto = "TrenchRun"; | ||
|
||
|
||
} | ||
|
||
public static void GeneratorAuto(){ | ||
CurrentAuto = "GeneratorAuto"; | ||
|
||
|
||
|
||
} | ||
} |
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