Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

4/7/2024 refactor #37

Merged
merged 41 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
360ebaf
refactor(controller): Work on velocity controllers.
haydenheroux Apr 8, 2024
c6b7b87
wip
haydenheroux Apr 8, 2024
503f188
refactor(intake): Use velocity controller for intake rollers.
haydenheroux Apr 8, 2024
fbe8372
fix(intake): Configure rollers.
haydenheroux Apr 8, 2024
7d1f6a3
refactor(shooter): Use velocity controller for shooter.
haydenheroux Apr 8, 2024
5c246e0
refactor(shooter): Remove old classes.
haydenheroux Apr 8, 2024
d6124f3
wip
haydenheroux Apr 8, 2024
a2cd733
refactor(arm): Use position controller for arm.
haydenheroux Apr 9, 2024
f47b220
refactor: Remove motors.
haydenheroux Apr 9, 2024
368b47d
wip
haydenheroux Apr 9, 2024
d6d1d9b
refactor(superstructure): Improve superstructure.
haydenheroux Apr 9, 2024
8cbb281
wip
haydenheroux Apr 9, 2024
2594d21
fix(superstructure): Improve state sequences.
haydenheroux Apr 9, 2024
edf8abf
fix(auto): Add timeouts to auto.
haydenheroux Apr 9, 2024
8e56beb
chore: Format.
haydenheroux Apr 9, 2024
ca91a12
refactor(controller): Report degrees.
haydenheroux Apr 9, 2024
ff15067
refactor: Remove dead code.
haydenheroux Apr 9, 2024
09f1b6c
feat(arm): Initial re-tune (without shooter).
haydenheroux Apr 9, 2024
3c9b273
refactor(superstructure): Move speeds and positions to constants.
haydenheroux Apr 9, 2024
3fa5ec7
fix(intake): Improve intake tune.
haydenheroux Apr 10, 2024
d0a74bc
fix(shooter): Adjust shooter gearing.
haydenheroux Apr 10, 2024
19bab75
Merge branch '4_7_2024_refactor' of https://github.com/Gongoliers/Rob…
haydenheroux Apr 10, 2024
8081e52
fix(swerve): Improve steer tune.
haydenheroux Apr 10, 2024
68d3c6d
fix(arm): Arm tune.
haydenheroux Apr 10, 2024
ae4dccc
feat(intake): Improve eject sequence.
haydenheroux Apr 10, 2024
0aba423
fix: Idle states.
haydenheroux Apr 10, 2024
953ec1f
fix(intake): Add roller stuck detection.
haydenheroux Apr 10, 2024
847a180
fix(intake): Rumble on note.
haydenheroux Apr 10, 2024
fc927ed
fix(arm): Weighted arm tune.
haydenheroux Apr 11, 2024
aeab846
fix(shooter): Brake mode.
haydenheroux Apr 11, 2024
c93e53a
fix(shooter): Spin down.
haydenheroux Apr 11, 2024
d2346bb
fix(shooter): Disable ejecting for now.
haydenheroux Apr 11, 2024
5a6664c
wip
haydenheroux Apr 11, 2024
e9fb11e
idk
haydenheroux Apr 11, 2024
cac5c85
fix(arm): Improve arm tune.
haydenheroux Apr 11, 2024
df69d48
fix(shooter): Improve shooter tune.
haydenheroux Apr 11, 2024
b5d5b8a
fix(superstructure): Improve ejecting.
haydenheroux Apr 11, 2024
6cda2ed
fix(intake): Up note current.
haydenheroux Apr 11, 2024
8b98299
feat: Improve rumble.
haydenheroux Apr 11, 2024
1a225b6
feat(superstructure): Add new states for passing.
haydenheroux Apr 11, 2024
7580081
fix(arm): Raise eject angle to prevent note from bouncing back.
haydenheroux Apr 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@
],
"java.test.defaultConfig": "WPIlibUnitTests",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable",
"java.debug.settings.onBuildFailureProceed": true
"java.debug.settings.onBuildFailureProceed": true,
"wpilib.skipTests": true
}
13 changes: 11 additions & 2 deletions simgui.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,19 @@
},
"transitory": {
"Shuffleboard": {
".recording": {
"open": true
},
"Arm": {
"Feedforward": {
"open": true
},
"Position": {
"open": true
},
"Shoulder": {
"open": true
},
"Velocities": {
"open": true
}
Expand Down Expand Up @@ -99,7 +105,7 @@
"Measurement": {
"open": true
},
"Setpoint": {
"State": {
"open": true
},
"open": true,
Expand Down Expand Up @@ -214,7 +220,10 @@
}
]
}
]
],
"window": {
"visible": false
}
}
}
}
20 changes: 0 additions & 20 deletions src/main/java/frc/lib/AccelerationCalculator.java

This file was deleted.

154 changes: 0 additions & 154 deletions src/main/java/frc/lib/DoubleJointedArmFeedforward.java

This file was deleted.

73 changes: 0 additions & 73 deletions src/main/java/frc/lib/JointConstants.java

This file was deleted.

69 changes: 0 additions & 69 deletions src/main/java/frc/lib/LinearServo.java

This file was deleted.

Loading
Loading