From 6a67b76bd947d90c58b28e4e5bbaa218b3c12fc5 Mon Sep 17 00:00:00 2001 From: Astatin3 Date: Mon, 23 Jan 2023 19:53:30 -0700 Subject: [PATCH] Development --- src/main/java/frc4388/robot/subsystems/Arm.java | 7 +++++++ .../java/frc4388/robot/subsystems/Claw.java | 17 +++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/main/java/frc4388/robot/subsystems/Arm.java create mode 100644 src/main/java/frc4388/robot/subsystems/Claw.java diff --git a/src/main/java/frc4388/robot/subsystems/Arm.java b/src/main/java/frc4388/robot/subsystems/Arm.java new file mode 100644 index 0000000..ea5aa8e --- /dev/null +++ b/src/main/java/frc4388/robot/subsystems/Arm.java @@ -0,0 +1,7 @@ +public class Arm { + // Moves arm to distence [dist] then returns new ang + public int funtion moveArm(int dist) { + // Move arm code + return newDist; + } +} \ No newline at end of file diff --git a/src/main/java/frc4388/robot/subsystems/Claw.java b/src/main/java/frc4388/robot/subsystems/Claw.java new file mode 100644 index 0000000..eae54e4 --- /dev/null +++ b/src/main/java/frc4388/robot/subsystems/Claw.java @@ -0,0 +1,17 @@ +public class claw { + // Opens claw + public void funtion openClaw() { + // Open claw + } + + // Closes claw + public void function closeClaw() { + //Close claw + } + + // Rotate wrist + public int function rotClaw(int rot) { + //Rotate wrist to ROT + return newRot; + } +} \ No newline at end of file