-
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
b9c48a7
commit 8a793ad
Showing
3 changed files
with
28 additions
and
45 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.