You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RobotContainer.java [https://github.com/grt192/2024-Haunted-House/blob/main/2025%20Haunted%20House/src/main/java/frc/robot/RobotContainer.java] has a bunch of mechanisms now, but they are not well organized. Please clean up the file by collecting all related code together into one place. For example, all of the port definitions should be together. So public static final int justinPort = 2; should be next to private final int satvikPort = 0;. Ultimately it'd be great to assign constants for all the used ports.
The text was updated successfully, but these errors were encountered:
And I know the PR process was a little tedious at this stage, but it's good to get practice with modern methods and to keep any rookies from blasting a big hole in everyone else's work.
RobotContainer.java [https://github.com/grt192/2024-Haunted-House/blob/main/2025%20Haunted%20House/src/main/java/frc/robot/RobotContainer.java] has a bunch of mechanisms now, but they are not well organized. Please clean up the file by collecting all related code together into one place. For example, all of the port definitions should be together. So
public static final int justinPort = 2;
should be next toprivate final int satvikPort = 0;
. Ultimately it'd be great to assign constants for all the used ports.The text was updated successfully, but these errors were encountered: