Skip to content

Commit

Permalink
feat: Global Constants
Browse files Browse the repository at this point in the history
  • Loading branch information
0verkil committed Dec 26, 2024
1 parent e5765e3 commit 19fba38
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
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;

}
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;

}

0 comments on commit 19fba38

Please sign in to comment.