Skip to content

Commit 04dd42e

Browse files
author
Roberts Kalnins
committed
Add vacuum buttons
1 parent 26099b9 commit 04dd42e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/main/java/frc/team2767/deepspace/control/SmartDashboardControls.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public SmartDashboardControls() {
5252
addPitCommands();
5353
addAzimuthCommands();
5454
addVisionCommands();
55+
addVacuumCommands();
5556
addPathTest();
5657
}
5758
}

src/main/kotlin/frc/team2767/deepspace/command/HealthCheckCommand.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ class HealthCheckCommand : Command() {
7979
timedTest {
8080
percentOutput = 0.25
8181
currentRange = volt3currentRange
82-
speedRange = -9500..-8500
82+
speedRange = 8500..9500
8383
}
8484

8585
timedTest {
8686
percentOutput = -0.25
8787
currentRange = volt3currentRange
88-
speedRange = 8500..9500
88+
speedRange = -9500..-8500
8989
}
9090

9191
timedTest {
@@ -248,13 +248,13 @@ class HealthCheckCommand : Command() {
248248
timedTest {
249249
percentOutput = 0.25
250250
currentRange = volt6currentRange
251-
speedRange = 3500..4500
251+
speedRange = -4500..-3500
252252
}
253253

254254
timedTest {
255255
percentOutput = -0.25
256256
currentRange = volt6currentRange
257-
speedRange = -4500..-3500
257+
speedRange = 3500..4500
258258
}
259259

260260
timedTest {

0 commit comments

Comments
 (0)