Skip to content

Commit

Permalink
hardware + subsystems stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kirbt committed Jan 17, 2024
1 parent c0a55a6 commit d12f7ff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/java/frc/team2412/robot/Hardware.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,24 @@

public class Hardware {
// this is where we will ID the hardware, like motors n stuff

// drive devices [1 - 19]


// cameras


// climb [20 - 29]



// shooter [30 - 39]



// intake [40 - 49]




}
9 changes: 9 additions & 0 deletions src/main/java/frc/team2412/robot/Subsystems.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@
public class Subsystems {
public static class SubsystemConstants {
public static final boolean DRIVEBASE_ENABLED = false;
public static final boolean APRILTAGS_ENABLED = false;
public static final boolean LIMELIGHT_ENABLED = false;
public static final boolean CLIMB_ENABLED = false;
public static final boolean SHOOTER_ENBABLED = false;
public static final boolean INTAKE_ENABLED = false;

}



public Subsystems() {
// initialize subsystems here (wow thats wild)

}
}

0 comments on commit d12f7ff

Please sign in to comment.