mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-20 06:31:39 +00:00
Updated swervelib
This commit is contained in:
20
swervelib/parser/json/PIDFPropertiesJson.java
Normal file
20
swervelib/parser/json/PIDFPropertiesJson.java
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user