Skip to content

Commit 8f6729a

Browse files
button for remote reset pivot
1 parent 126bd62 commit 8f6729a

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,8 @@ def includeDesktopSupport = true
5252
// Configuration for AdvantageKit
5353
repositories {
5454
maven {
55-
url = uri("https://maven.pkg.github.com/Mechanical-Advantage/AdvantageKit")
56-
credentials {
57-
username = "Mechanical-Advantage-Bot"
58-
password = "\u0067\u0068\u0070\u005f\u006e\u0056\u0051\u006a\u0055\u004f\u004c\u0061\u0079\u0066\u006e\u0078\u006e\u0037\u0051\u0049\u0054\u0042\u0032\u004c\u004a\u006d\u0055\u0070\u0073\u0031\u006d\u0037\u004c\u005a\u0030\u0076\u0062\u0070\u0063\u0051"
59-
}
55+
url = uri("https://frcmaven.wpi.edu/artifactory/littletonrobotics-mvn-release")
6056
}
61-
mavenLocal()
6257
}
6358

6459
configurations.all {

src/main/java/frc/robot/BuildConstants.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ public final class BuildConstants {
55
public static final String MAVEN_GROUP = "";
66
public static final String MAVEN_NAME = "2024RobotCode";
77
public static final String VERSION = "unspecified";
8-
public static final int GIT_REVISION = 360;
9-
public static final String GIT_SHA = "5ea1d107d8bc7bc526833625520f24fec69e2fc5";
10-
public static final String GIT_DATE = "2024-12-06 17:46:15 EST";
8+
public static final int GIT_REVISION = 361;
9+
public static final String GIT_SHA = "126bd62e4eadeddbff158d35c227625365cfe515";
10+
public static final String GIT_DATE = "2024-12-10 19:23:32 EST";
1111
public static final String GIT_BRANCH = "tk-demo-mode";
12-
public static final String BUILD_DATE = "2024-12-10 19:18:17 EST";
13-
public static final long BUILD_UNIX_TIME = 1733876297617L;
12+
public static final String BUILD_DATE = "2025-05-20 18:20:14 EDT";
13+
public static final long BUILD_UNIX_TIME = 1747779614363L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

src/main/java/frc/robot/RobotContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,8 @@ private void demoControls() {
600600
new InstantCommand(() -> led.setState(LED_STATE.BLUE))
601601
.andThen(new InstantCommand(() -> shooter.stopFlywheels()))
602602
.andThen(new SetPivotTarget(Constants.PivotConstants.STOW_SETPOINT_DEG, pivot)));
603+
604+
driveController.back().onTrue(new SetPivotTarget(95, pivot));
603605
}
604606

605607
private void testControls() {

0 commit comments

Comments
 (0)