-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swerve Code works #10
Conversation
Currently the robot is driving opposite of what we expected (forward = backward, left = right) but otherwise good
robot drives correctly now
@@ -50,12 +52,17 @@ public class RobotContainer { | |||
/** The container for the robot. Contains subsystems, OI devices, and commands. */ | |||
public RobotContainer() { | |||
m_swerveDrive.registerTelemetry(m_telemetry::telemeterize); | |||
|
|||
initSmartDashboard(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indent but spotless will probably fix that
@@ -128,7 +128,7 @@ public CommandSwerveDrivetrain( | |||
if (Utils.isSimulation()) { | |||
startSimThread(); | |||
} | |||
configureAutoBuilder(); | |||
// configureAutoBuilder(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will need to add this back in later to run autos
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just needed to fix a typo
No description provided.