forked from FIRST-Tech-Challenge/FtcRobotController
-
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
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
TeamCode/src/main/java/org/firstinspires/ftc/teamcode/constants/PIDFConstants.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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.firstinspires.ftc.teamcode.constants; | ||
|
||
import com.acmerobotics.dashboard.config.Config; | ||
|
||
/** | ||
* This class is a global constants class to ensure that your constants from tuning will save when testing. | ||
*/ | ||
@Config | ||
public class PIDFConstants { | ||
|
||
public static double p = 0; | ||
|
||
public static double d = 0; | ||
|
||
public static double f = 0; | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
TeamCode/src/main/java/org/firstinspires/ftc/teamcode/constants/SquIDConstants.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.firstinspires.ftc.teamcode.constants; | ||
|
||
import com.acmerobotics.dashboard.config.Config; | ||
|
||
/** | ||
* This class is a global constants class to ensure that your constants from tuning will save when testing. | ||
*/ | ||
@Config | ||
public class SquIDConstants { | ||
|
||
public static double p = 0; | ||
|
||
} |