generated from CshCyberhawks/KotlinTemplate
-
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.
Laid out IO systems closer to what I we'd want and made it build
- Loading branch information
Showing
17 changed files
with
109 additions
and
72 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package frc.robot.constants | ||
|
||
object ElevatorConstants { | ||
val kG = 0 | ||
val kS = 0 | ||
val kV = 0 | ||
val kA = 0 | ||
val kP = 0 | ||
val kI = 0 | ||
val kD = 0 | ||
val targetVelocity = 0 | ||
val targetAcceleration = 0 | ||
val targetJerk = 0 | ||
val kG = 0.0 | ||
val kS = 0.0 | ||
val kV = 0.0 | ||
val kA = 0.0 | ||
val kP = 0.0 | ||
val kI = 0.0 | ||
val kD = 0.0 | ||
val targetVelocity = 0.0 | ||
val targetAcceleration = 0.0 | ||
val targetJerk = 0.0 | ||
val id = 0 | ||
val canbus = "" | ||
} |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package frc.robot.constants | ||
|
||
object IntakeConstants { | ||
val kG = 0 | ||
val kS = 0 | ||
val kV = 0 | ||
val kA = 0 | ||
val kP = 0 | ||
val kI = 0 | ||
val kD = 0 | ||
val targetVelocity = 0 | ||
val targetAcceleration = 0 | ||
val targetJerk = 0 | ||
val kG = 0.0 | ||
val kS = 0.0 | ||
val kV = 0.0 | ||
val kA = 0.0 | ||
val kP = 0.0 | ||
val kI = 0.0 | ||
val kD = 0.0 | ||
val targetVelocity = 0.0 | ||
val targetAcceleration = 0.0 | ||
val targetJerk = 0.0 | ||
val id = 0 | ||
val canbus = "" | ||
} |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package frc.robot.constants | ||
|
||
object PivotConstants { | ||
val kG = 0 | ||
val kS = 0 | ||
val kV = 0 | ||
val kA = 0 | ||
val kP = 0 | ||
val kI = 0 | ||
val kD = 0 | ||
val targetVelocity = 0 | ||
val targetAcceleration = 0 | ||
val targetJerk = 0 | ||
val kG = 0.0 | ||
val kS = 0.0 | ||
val kV = 0.0 | ||
val kA = 0.0 | ||
val kP = 0.0 | ||
val kI = 0.0 | ||
val kD = 0.0 | ||
val targetVelocity = 0.0 | ||
val targetAcceleration = 0.0 | ||
val targetJerk = 0.0 | ||
val id = 0 | ||
val canbus = "" | ||
} |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package frc.robot.constants | ||
|
||
object WristConstants { | ||
val kG = 0 | ||
val kS = 0 | ||
val kV = 0 | ||
val kA = 0 | ||
val kP = 0 | ||
val kI = 0 | ||
val kD = 0 | ||
val targetVelocity = 0 | ||
val targetAcceleration = 0 | ||
val targetJerk = 0 | ||
val kG = 0.0 | ||
val kS = 0.0 | ||
val kV = 0.0 | ||
val kA = 0.0 | ||
val kP = 0.0 | ||
val kI = 0.0 | ||
val kD = 0.0 | ||
val targetVelocity = 0.0 | ||
val targetAcceleration = 0.0 | ||
val targetJerk = 0.0 | ||
val id = 0 | ||
val canbus = "" | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package frc.robot.subsystems.intake | ||
|
||
enum class CoralIntakeState { | ||
Intaking, | ||
Idle, | ||
Scoring | ||
} | ||
|
||
enum class AlgaeIntakeState { | ||
Intaking, | ||
Idle, | ||
Scoring | ||
} |
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
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
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