-
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.
- Loading branch information
1 parent
81246ca
commit e290e26
Showing
5 changed files
with
61 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) FIRST and other WPILib contributors. | ||
// Open Source Software; you can modify and/or share it under the terms of | ||
// the WPILib BSD license file in the root directory of this project. | ||
|
||
package frc.robot; | ||
|
||
public final class Constants { | ||
|
||
|
||
//Intake PID and Encoder Constants | ||
public static class IntakeConstants { | ||
public static final double kIntakeDroppedAngle = 9.0; | ||
public static final double kIntakeRaisedAngle = 9.0; | ||
public static final int kIntakeMotorID = 0; | ||
public static final int kArmMotorID = 0; | ||
public static final double kIntakeP = 0; | ||
public static final double kIntakeI = 0; | ||
public static final double kIntakeD = 0; | ||
public static final double kArmP = 0; | ||
public static final double kArmI = 0; | ||
public static final double kArmD = 0; | ||
public static final int kArmEncoderCh = 0; | ||
} | ||
|
||
//Shooter subsystem speed constants | ||
public static class ShooterConstants { | ||
public static final double kSpinSpeedTrue = 0.75; | ||
public static final double kSpinSpeedFalse = 0; | ||
|
||
|
||
} | ||
} | ||
|
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