This repository has been archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
c4536b1
commit b36a6ae
Showing
6 changed files
with
54 additions
and
37 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
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,8 @@ | ||
package org.firstinspires.ftc.teamcode; | ||
|
||
@com.qualcomm.robotcore.eventloop.opmode.Autonomous(name = "BlueLeftAuto", group = "opmode") | ||
public class BlueLeftAuto extends Autonomous { | ||
public BlueLeftAuto() { | ||
super(Autonomous.BLUE, Autonomous.LEFT); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
package org.firstinspires.ftc.teamcode; | ||
|
||
@com.qualcomm.robotcore.eventloop.opmode.Autonomous(name = "RedRightAuto", group = "opmode") | ||
public class RedRightAuto extends Autonomous { | ||
public RedRightAuto() { | ||
super(Autonomous.RED, Autonomous.RIGHT); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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