Updated docs, reduced code footprint

This commit is contained in:
thenetworkgrinch
2023-11-29 17:36:08 -06:00
parent 3d19a44b7f
commit 07095742e8
111 changed files with 297 additions and 282 deletions

View File

@@ -902,7 +902,7 @@ public class SwerveDrive
SmartDashboard.putNumber(
"Module[" + module.configuration.name + "] Absolute Encoder", module.getAbsolutePosition());
SmartDashboard.putNumber(
"Module[" + module.configuration.name + "] Absolute Encoder Read Issue", module.getAbsoluteEncoderReadIssue());
"Module[" + module.configuration.name + "] Absolute Encoder Read Issue", module.getAbsoluteEncoderReadIssue() ? 1 : 0);
}
if (SwerveDriveTelemetry.verbosity.ordinal() >= TelemetryVerbosity.HIGH.ordinal())
{