Files
YAGSL/swervelib/parser/json/PIDFPropertiesJson.java
thenetworkgrinch 6a40ec018e Updated swervelib
2023-02-13 14:37:05 -06:00

21 lines
507 B
Java

package frc.robot.subsystems.swervedrive2.swervelib.parser.json;
import frc.robot.subsystems.swervedrive2.swervelib.parser.PIDFConfig;
/**
* {@link frc.robot.subsystems.swervedrive2.swervelib.SwerveModule} PID with Feedforward for the drive motor and angle
* motor.
*/
public class PIDFPropertiesJson
{
/**
* The PIDF with Integral Zone used for the drive motor.
*/
public PIDFConfig drive;
/**
* The PIDF with Integral Zone used for the angle motor.
*/
public PIDFConfig angle;
}