-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from WHS-FRC-3467/claw-roller
Claw roller
- Loading branch information
Showing
14 changed files
with
42 additions
and
179 deletions.
There are no files selected for viewing
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
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
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
6 changes: 6 additions & 0 deletions
6
src/main/java/frc/robot/subsystems/ClawRoller/ClawRollerIO.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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package frc.robot.subsystems.ClawRoller; | ||
|
||
import frc.robot.subsystems.GenericMotionProfiledSubsystem.GenericMotionProfiledSubsystemIO; | ||
|
||
public interface ClawRollerIO extends GenericMotionProfiledSubsystemIO { | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/frc/robot/subsystems/ClawRoller/ClawRollerIOSim.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package frc.robot.subsystems.ClawRoller; | ||
|
||
import frc.robot.subsystems.GenericMotionProfiledSubsystem.GenericMotionProfiledSubsystemIOImpl; | ||
|
||
public class ClawRollerIOSim extends GenericMotionProfiledSubsystemIOImpl | ||
implements ClawRollerIO { | ||
|
||
public ClawRollerIOSim() | ||
{ | ||
super(ClawRollerConstants.kSubSysConstants, true); | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/frc/robot/subsystems/ClawRoller/ClawRollerIOTalonFX.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package frc.robot.subsystems.ClawRoller; | ||
|
||
import frc.robot.subsystems.GenericMotionProfiledSubsystem.GenericMotionProfiledSubsystemIOImpl; | ||
|
||
public class ClawRollerIOTalonFX extends GenericMotionProfiledSubsystemIOImpl | ||
implements ClawRollerIO { | ||
|
||
public ClawRollerIOTalonFX() | ||
{ | ||
super(ClawRollerConstants.kSubSysConstants, false); | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
src/main/java/frc/robot/subsystems/SampleProfiledRoller/SampleProfiledRollerIO.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/frc/robot/subsystems/SampleProfiledRoller/SampleProfiledRollerIOSim.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/frc/robot/subsystems/SampleProfiledRoller/SampleProfiledRollerIOTalonFX.java
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
src/main/java/frc/robot/subsystems/SampleRollers/SampleRollers.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
src/main/java/frc/robot/subsystems/SampleRollers/SampleRollersConstants.java
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
src/main/java/frc/robot/subsystems/SampleRollers/SampleRollersIO.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/main/java/frc/robot/subsystems/SampleRollers/SampleRollersIOSim.java
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/main/java/frc/robot/subsystems/SampleRollers/SampleRollersIOTalonFX.java
This file was deleted.
Oops, something went wrong.