WPILib includes a robot characterization tool which tests the robot to determine gains for the Drivetrain motors. We need this for trajectory following.
The characterization data can be exported as a json file, which might be useful to keep in this repository as a reference. This way someone looking at the code in the future can see what data we were using at that time rather than the current robot.
Additionally, the gains and constants that we derive should be kept in Constants.java.
WPILib includes a robot characterization tool which tests the robot to determine gains for the Drivetrain motors. We need this for trajectory following.
The characterization data can be exported as a json file, which might be useful to keep in this repository as a reference. This way someone looking at the code in the future can see what data we were using at that time rather than the current robot.
Additionally, the gains and constants that we derive should be kept in Constants.java.
See #38 and the WPILib docs on trajectory following for more