-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
21 additions
and
83 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/main/java/frc/robot/util/ArmConfigs.java → src/main/java/frc/robot/util/ArmIO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package frc.robot.util; | ||
|
||
public class ArmConfigs { | ||
public class ArmIO { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package frc.robot.util; | ||
|
||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard; | ||
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab; | ||
import frc.robot.RobotContainer; | ||
import frc.robot.util.Constants; | ||
|
||
@SuppressWarnings("unused") | ||
|
||
// See FRC 2910 The Jack in the Bot's code for an example of how to use this class | ||
// https://github.com/FRCTeam2910/2023CompetitionRobot-Public/blob/main/src/main/java/org/frcteam2910/c2023/util/DriverReadouts.java | ||
public class DriverReadouts { | ||
|
||
public DriverReadouts(RobotContainer container) { | ||
// ShuffleboardTab tab = Shuffleboard.getTab(Constants.DRIVER_READOUTS_TAB_NAME); | ||
|
||
// tab.add("Autonomous Mode", PathChooser.getModeChooser()).withSize(5, 2).withPosition(9, 0); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ain/java/frc/robot/util/WinchConfigs.java → src/main/java/frc/robot/util/FlywheelIO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package frc.robot.util; | ||
|
||
public class WinchConfigs { | ||
public class FlywheelIO { | ||
|
||
} |