-
Notifications
You must be signed in to change notification settings - Fork 4
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
6e75d19
commit 846132f
Showing
3 changed files
with
69 additions
and
46 deletions.
There are no files selected for viewing
12 changes: 9 additions & 3 deletions
12
TeamCode/src/main/java/org/firstinspires/ftc/teamcode/opmode/Configuration.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,9 +1,15 @@ | ||
package org.firstinspires.ftc.teamcode.opmode; | ||
|
||
public class Configuration { | ||
String park = "none"; | ||
boolean placePixel = false; | ||
boolean fieldCentric = true; | ||
// - place pixel? | ||
// - use inner or outer paths? | ||
// - park or drop on board? | ||
//String park = "none"; | ||
boolean placePixel = true; | ||
boolean doPark = true; | ||
boolean innerPath = true; // ignored if doPark is false | ||
boolean dropOnBoard = true; // ignored if doPark is false | ||
|
||
boolean fieldCentric = true; | ||
boolean tensorFlowInInit = false; | ||
} |
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