Files
YAGSL/swervelib/parser/json/PIDFPropertiesJson.java
2023-02-13 17:21:24 -06:00

20 lines
402 B
Java

package swervelib.parser.json;
import swervelib.parser.PIDFConfig;
/**
* {@link 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;
}