-
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
Made Turret Subsystem #5
base: main
Are you sure you want to change the base?
Conversation
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.
Looks great overall. However, you did break our formatting standards and thus I cannot in good conscience approve this pull request. Please make the highlighted change. Thank you.
@@ -12,6 +18,7 @@ | |||
} | |||
|
|||
public static class CANMotor { | |||
public static final int turretMotor = -1; // TODO: confirm port |
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.
Make sure to get the port for this, but not a necessary change before merge.
public static final double TICK_MULTIPLIER = 360.0 / ENCODER_TICKS; | ||
public static final double BIG_GEAR_RADIUS = -1; // Gear of the turret, TODO: CHANGE CONST | ||
public static final double SMALL_GEAR_RADIUS = -1; // Gear of the motor, TODO: CHANGE CONST | ||
public static final double GEAR_RATIO = BIG_GEAR_RADIUS / SMALL_GEAR_RADIUS; |
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.
Make sure these constants are all worked out
removing a newline...
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.
Thank you for complying with our formatting standards.
No description provided.