Skip to content

Commit

Permalink
Created arm interface
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterBiscuit committed Jan 13, 2024
1 parent 6953095 commit 62420be
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/frc/subsystems/Arm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package frc.subsystems;

public interface Arm {
//gets the angle of the arm.
public default void getAngle() {

}
//sets of the angle of the arm.
public default double setAngle() {
return 0;
}
}

0 comments on commit 62420be

Please sign in to comment.