Skip to content

Commit

Permalink
delete sutff
Browse files Browse the repository at this point in the history
  • Loading branch information
Teriyaki3712 committed Oct 16, 2024
1 parent c296e59 commit 3befdbe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
5 changes: 5 additions & 0 deletions src/main/java/frc/robot/subsystems/Intake.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package frc.robot.subsystems;

public class Intake {

Check warning on line 3 in src/main/java/frc/robot/subsystems/Intake.java

View workflow job for this annotation

GitHub Actions / testtool

[testtool] src/main/java/frc/robot/subsystems/Intake.java#L3 <com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck>

Missing a Javadoc comment.
Raw output
/github/workspace/./src/main/java/frc/robot/subsystems/Intake.java:3:1: warning: Missing a Javadoc comment. (com.puppycrawl.tools.checkstyle.checks.javadoc.MissingJavadocTypeCheck)

}
16 changes: 5 additions & 11 deletions src/main/java/frc/robot/subsystems/drive/DrivetrainVictorSP.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,16 @@
* Drivetrain VictorSP
*/
public class DrivetrainVictorSP implements DrivetrainIO {
private final VictorSP left1 = new VictorSP(4);
private final VictorSP left2 = new VictorSP(5);

private final VictorSP right1 = new VictorSP(6);
private final VictorSP right2 = new VictorSP(7);
//create all 4 directions for both motars

private AHRS gyro = new AHRS(SPI.Port.kMXP);

/**
* Drivetrain VictorSP
*/
public DrivetrainVictorSP() {
left1.addFollower(left2);
right1.addFollower(right2);
right1.setInverted(true);
right2.setInverted(true);
//make the motars follow each other and then make them inverted

}

@Override
Expand All @@ -36,8 +30,8 @@ public void updateInputs(DrivetrainIOInputs inputs) {
* Drive Voltage
*/
public void setDriveVoltage(double lvolts, double rvolts) {
left1.set(lvolts);
right1.set(rvolts);
//set the volts to the motar

}

}

0 comments on commit 3befdbe

Please sign in to comment.