Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
penguin212 committed Jan 31, 2024
1 parent e0a1543 commit 12641f6
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorSetAutoCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorSetManualCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.Elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorToAMPCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.Elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorToChuteCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.Elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorToGroundCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package frc.robot.commands;
package frc.robot.commands.elevator;

import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.subsystems.Elevator.ElevatorSubsystem;
import frc.robot.subsystems.Elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorState;
import frc.robot.subsystems.elevator.ElevatorSubsystem;

public class ElevatorToSpeakerCommand extends Command{
private ElevatorSubsystem elevatorSubsystem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.robot.subsystems.Elevator;
package frc.robot.subsystems.elevator;

import edu.wpi.first.math.util.Units;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.robot.subsystems.Elevator;
package frc.robot.subsystems.elevator;

import java.util.EnumSet;

Expand Down

0 comments on commit 12641f6

Please sign in to comment.