Skip to content

Commit

Permalink
Heading PID Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
1939DriverStation committed Feb 10, 2024
1 parent 2fc8947 commit 8994b71
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/main/deploy/swerve/controllerproperties.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"angleJoystickRadiusDeadband": 0.5,
"heading": {
"p": 0.4,
"i": 0,
"d": 0.01
"p": 0.625,
"i": 0.0475,
"d": 0.04
}
}
18 changes: 9 additions & 9 deletions src/main/java/frc/robot/util/BuildConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
*/
public final class BuildConstants {
public static final String MAVEN_GROUP = "";
public static final String MAVEN_NAME = "";
public static final String VERSION = "";
public static final int GIT_REVISION = 0;
public static final String GIT_SHA = "";
public static final String GIT_DATE = "";
public static final String GIT_BRANCH = "";
public static final String BUILD_DATE = "";
public static final long BUILD_UNIX_TIME = 0;
public static final int DIRTY = 0;
public static final String MAVEN_NAME = "YAGSL";
public static final String VERSION = "unspecified";
public static final int GIT_REVISION = 8;
public static final String GIT_SHA = "2fc8947d334962af5508641b5ec73f2f686517af";
public static final String GIT_DATE = "2024-02-03 14:09:42 CST";
public static final String GIT_BRANCH = "master";
public static final String BUILD_DATE = "2024-02-10 10:56:11 CST";
public static final long BUILD_UNIX_TIME = 1707584171715L;
public static final int DIRTY = 1;

private BuildConstants(){}
}

0 comments on commit 8994b71

Please sign in to comment.