mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-19 06:21:40 +00:00
18 lines
321 B
Java
18 lines
321 B
Java
|
|
package frc.robot.subsystems.swervedrive2.swervelib.parser.json.modules;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Inverted motor JSON parsed class. Used to access the JSON data.
|
||
|
|
*/
|
||
|
|
public class BoolMotorJson
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Drive motor inversion state.
|
||
|
|
*/
|
||
|
|
public boolean drive;
|
||
|
|
/**
|
||
|
|
* Angle motor inversion state.
|
||
|
|
*/
|
||
|
|
public boolean angle;
|
||
|
|
}
|