Skip to content

Commit 7e835b6

Browse files
committed
refactor: move arm subsystem to superstructure dir
Signed-off-by: Dasun Abeykoon <[email protected]>
1 parent 5fce186 commit 7e835b6

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

src/main/java/org/frc6423/robot/subsystems/arm/Arm.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/Arm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import edu.wpi.first.epilogue.Logged;
1010
import edu.wpi.first.wpilibj2.command.Command;

src/main/java/org/frc6423/robot/subsystems/arm/ArmPivot.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmPivot.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import static edu.wpi.first.units.Units.Centimeters;
1010
import static edu.wpi.first.units.Units.Degrees;

src/main/java/org/frc6423/robot/subsystems/arm/ArmPivotIO.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmPivotIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import edu.wpi.first.epilogue.Logged;
1010

src/main/java/org/frc6423/robot/subsystems/arm/ArmPivotIONone.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmPivotIONone.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
/** Null {@link ArmPivotIO} */
1010
public class ArmPivotIONone implements ArmPivotIO {

src/main/java/org/frc6423/robot/subsystems/arm/ArmPivotIOSim.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmPivotIOSim.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import static edu.wpi.first.units.Units.KilogramSquareMeters;
1010
import static edu.wpi.first.units.Units.Meters;
1111
import static edu.wpi.first.units.Units.Radians;
12-
import static org.frc6423.robot.subsystems.arm.ArmPivot.*;
12+
import static org.frc6423.robot.subsystems.superstructure.arm.ArmPivot.*;
1313

1414
import edu.wpi.first.math.MathUtil;
1515
import edu.wpi.first.math.controller.ProfiledPIDController;

src/main/java/org/frc6423/robot/subsystems/arm/ArmRoller.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmRoller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import edu.wpi.first.wpilibj2.command.Command;
1010
import java.util.function.DoubleSupplier;

src/main/java/org/frc6423/robot/subsystems/arm/ArmState.java renamed to src/main/java/org/frc6423/robot/subsystems/superstructure/arm/ArmState.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Open Source Software; you can modify and/or share it under the terms of
55
// MIT license file in the root directory of this project
66

7-
package org.frc6423.robot.subsystems.arm;
7+
package org.frc6423.robot.subsystems.superstructure.arm;
88

99
import edu.wpi.first.math.geometry.Rotation2d;
1010

0 commit comments

Comments
 (0)