generated from StuyPulse/Phil
-
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.
Merge pull request #7 from StuyPulse/arm-elevator
LEDs, Button Bindings, Arm + Elevator routines, bug fixes, and cleanup code
- Loading branch information
Showing
91 changed files
with
2,053 additions
and
799 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
20 changes: 0 additions & 20 deletions
20
src/main/java/com/stuypulse/robot/commands/arm/ArmMoveToL4Back.java
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
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
22 changes: 22 additions & 0 deletions
22
src/main/java/com/stuypulse/robot/commands/arm/algae/ArmToAlgaeL2.java
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,22 @@ | ||
/************************ PROJECT MARY *************************/ | ||
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ | ||
/* Use of this source code is governed by an MIT-style license */ | ||
/* that can be found in the repository LICENSE file. */ | ||
/***************************************************************/ | ||
|
||
package com.stuypulse.robot.commands.arm.algae; | ||
|
||
import com.stuypulse.robot.commands.arm.ArmToAngle; | ||
import com.stuypulse.robot.constants.Settings; | ||
|
||
public class ArmToAlgaeL2 extends ArmToAngle { | ||
public ArmToAlgaeL2() { | ||
super(Settings.Arm.ALGAE_L2_ANGLE); | ||
} | ||
|
||
@Override | ||
public void initialize() { | ||
arm.setRotateBoolean(false); | ||
super.initialize(); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/stuypulse/robot/commands/arm/algae/ArmToAlgaeL3.java
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,22 @@ | ||
/************************ PROJECT MARY *************************/ | ||
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ | ||
/* Use of this source code is governed by an MIT-style license */ | ||
/* that can be found in the repository LICENSE file. */ | ||
/***************************************************************/ | ||
|
||
package com.stuypulse.robot.commands.arm.algae; | ||
|
||
import com.stuypulse.robot.commands.arm.ArmToAngle; | ||
import com.stuypulse.robot.constants.Settings; | ||
|
||
public class ArmToAlgaeL3 extends ArmToAngle { | ||
public ArmToAlgaeL3() { | ||
super(Settings.Arm.ALGAE_L3_ANGLE); | ||
} | ||
|
||
@Override | ||
public void initialize() { | ||
arm.setRotateBoolean(false); | ||
super.initialize(); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/stuypulse/robot/commands/arm/algae/ArmToBarge.java
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,22 @@ | ||
/************************ PROJECT MARY *************************/ | ||
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ | ||
/* Use of this source code is governed by an MIT-style license */ | ||
/* that can be found in the repository LICENSE file. */ | ||
/***************************************************************/ | ||
|
||
package com.stuypulse.robot.commands.arm.algae; | ||
|
||
import com.stuypulse.robot.commands.arm.ArmToAngle; | ||
import com.stuypulse.robot.constants.Settings; | ||
|
||
public class ArmToBarge extends ArmToAngle { | ||
public ArmToBarge() { | ||
super(Settings.Arm.BARGE_ANGLE); | ||
} | ||
|
||
@Override | ||
public void initialize() { | ||
arm.setRotateBoolean(false); | ||
super.initialize(); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/com/stuypulse/robot/commands/arm/algae/ArmToStow.java
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,22 @@ | ||
/************************ PROJECT MARY *************************/ | ||
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ | ||
/* Use of this source code is governed by an MIT-style license */ | ||
/* that can be found in the repository LICENSE file. */ | ||
/***************************************************************/ | ||
|
||
package com.stuypulse.robot.commands.arm.algae; | ||
|
||
import com.stuypulse.robot.commands.arm.ArmToAngle; | ||
import com.stuypulse.robot.constants.Settings; | ||
|
||
public class ArmToStow extends ArmToAngle { | ||
public ArmToStow() { | ||
super(Settings.Arm.STOW_ANGLE); | ||
} | ||
|
||
@Override | ||
public void initialize() { | ||
arm.setRotateBoolean(false); | ||
super.initialize(); | ||
} | ||
} |
Oops, something went wrong.