Tuning Webpage
YAGSL maintains a somewhat complete configuration tool to aid you in creating configuration files from scratch here.
{% embed url="https://broncbotz3481.github.io/YAGSL-Example/" %}
{% hint style="warning" %}
IF you are using an Absolute Encoder which is attached to your SparkMAX then the angle
conversion factor is 360
.
{% endhint %}
From this webpage you should be able to download all files and place them into your deploy
directory to use for new SwerveParser(new File(Filesystem.getDeployDirectory(),"swerve")
.createSwerveDrive(Units.feetToMeters(4.5));
.
We also maintain a repository for known working configurations here!
{% embed url="https://github.com/BroncBotz3481/YAGSL-Configs" %}
If not your modules could end up like this!.
Modules flipped around, spinning CCW+
This happens when you input module locations incorrectly due to where the gyroscope is oriented on the robot or you have the device configurations in the wrong module locations in the configuration files. If this happens to you, you HAVE misconfigured your modules.
How to swap module configurations
For the examples we label with numbers as to be less confused, however when changing module files around we assign the numbers to the respective initial module configuration names. For the example above we have as follows
frontleft.json
frontright.json
backleft.json
backright.json
Swapping frontleft.json
with backleft.json
{
"drive": {
"type": "sparkmax",
"id": 4,
"canbus": null
},
"angle": {
"type": "sparkmax",
"id": 3,
"canbus": null
},
"encoder": {
"type": "cancoder",
"id": 9,
"canbus": null
},
"inverted": {
"drive": false,
"angle": false
},
"absoluteEncoderOffset": -114.609,
"location": {
"front": 12,
"left": 12
}
}
{
"drive": {
"type": "sparkmax",
"id": 7,
"canbus": null
},
"angle": {
"type": "sparkmax",
"id": 8,
"canbus": null
},
"encoder": {
"type": "cancoder",
"id": 12,
"canbus": null
},
"inverted": {
"drive": false,
"angle": false
},
"absoluteEncoderOffset": 6.504,
"location": {
"front": -12,
"left": 12
}
}
Swap the highlighted lines and you have swapped the module configurations correctly.
- Change the location negations to the desired module side.
- Rename the files without overwriting eachother.
This may help you in your endeavors!
{% file src="../../.gitbook/assets/SwerveDiagram.docx" %}
To correctly get the absoluteEncoderOffset
your swerve modules must be facing this way while reading the values.
JSON stands for "JavaScript Object Notation" it is a popular format for configuration, and string data representation. Learn more here
The swerve directory for generating a swerve drive must look like this. Assuming you have defined your swerve modules as "modules": [ "frontleft.json", "frontright.json", "backleft.json", "backright.json"]
in swervedrive.json
.
└── swerve
├── controllerproperties.json
├── modules
│ ├── backleft.json
│ ├── backright.json
│ ├── frontleft.json
│ ├── frontright.json
│ ├── physicalproperties.json
│ └── pidfproperties.json
└── swervedrive.json
The modules
folder, controllerproperties.json
, physicalproperties.json
, pidfproperties.json
, and swervedrive.json
files are necessary to build the swerve drive. Each one has specific fields which correspond to an attribute of the swerve drive, some physical and some abstract.
- Delete
wheelDiamter
,gearRatio
,encoderPulsePerRotation
fromphysicalproperties.json
- Add
optimalVoltage
tophysicalproperties.json
- Delete
maxSpeed
andoptimalVoltage
fromswervedrive.json
- IF a swerve module doesn't have the same drive motor or steering motor as the rest of the swerve drive you MUST specify a
conversionFactor
for BOTH the drive and steering motor in the modules configuration JSON file. IF one of the motors is the same as the rest of the swerve drive and you want to use thatconversionFactor
, set theconversionFactor
in the module JSON configuration to 0. - You MUST specify the maximum speed when creating a
SwerveDrive
throughnew SwerveParser(directory).createSwerveDrive(maximumSpeed);
- IF you do not want to set
conversionFactor
inswervedrive.json
. You can pass it into the constructor as a parameter like this
double DriveConversionFactor = SwerveMath.calculateMetersPerRotation(Units.inchesToMeters(WHEEL_DIAMETER), GEAR_RATIO, ENCODER_RESOLUTION);
double SteeringConversionFactor = SwerveMath.calculateDegreesPerSteeringRotation(GEAR_RATIO, ENCODER_RESOLUTION);
new SwerveParser(directory).createSwerveDrive(maximumSpeed, SteeringConversionFactor, DriveConversionFactor);