Skip to content

Commit

Permalink
Merge branch 'Setup-Shooter-Interface' of https://github.com/DevilBot…
Browse files Browse the repository at this point in the history
…z2876/Crescendo2024 into Setup-Shooter-Interface
  • Loading branch information
StewardHail3433 committed Jan 18, 2024
2 parents 21f3270 + 56f4515 commit e69b6a2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/frc/robot/subsystems/arm/Arm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package frc.robot.subsystems.arm;

public interface Arm {
// gets the angle of the arm
public default double getAngle() {
return 0;
}

// sets of the angle of the arm
public default void setAngle(double degrees) {}
}

0 comments on commit e69b6a2

Please sign in to comment.