-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 parent
c296e59
commit ca6a3f3
Showing
8 changed files
with
76 additions
and
93 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
26 changes: 26 additions & 0 deletions
26
src/main/java/frc/robot/subsystems/drive/DrivetrainReal.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,26 @@ | ||
package frc.robot.subsystems.drive; | ||
|
||
import edu.wpi.first.math.geometry.Rotation2d; | ||
|
||
/** | ||
* DrivetrainReal | ||
*/ | ||
public class DrivetrainReal implements DrivetrainIO { | ||
|
||
|
||
/** | ||
* Drivetrain Real | ||
*/ | ||
public DrivetrainReal() {} | ||
|
||
@Override | ||
public void updateInputs(DrivetrainIOInputs inputs) { | ||
inputs.gyroYaw = Rotation2d.fromDegrees(0); | ||
} | ||
|
||
/** | ||
* Drive Voltage | ||
*/ | ||
public void setDriveVoltage(double lvolts, double rvolts) {} | ||
|
||
} |
43 changes: 0 additions & 43 deletions
43
src/main/java/frc/robot/subsystems/drive/DrivetrainVictorSP.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.